Skip to content

Commit

Permalink
remove unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
anthrotype committed Jan 10, 2024
1 parent 1f3f179 commit 822c4b4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion Lib/ufo2ft/_compilers/variableTTFsCompiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,3 @@ class VariableTTFsCompiler(InterpolatableTTFCompiler):
autoUseMyMetrics: bool = True
dropImpliedOnCurves: bool = False
allQuadratic: bool = True
pass
6 changes: 1 addition & 5 deletions Lib/ufo2ft/featureWriters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def write(self, font, feaFile, compiler=None)
return True


def loadFeatureWriters(ufo, ignoreErrors=True, variable=False):
def loadFeatureWriters(ufo, ignoreErrors=True):
"""Check UFO lib for key "com.github.googlei18n.ufo2ft.featureWriters",
containing a list of dicts, each having the following key/value pairs:
For example:
Expand All @@ -63,10 +63,6 @@ def loadFeatureWriters(ufo, ignoreErrors=True, variable=False):
the built-in ufo2ft.featureWriters), and instantiate it with the given
'options' dict.
If ``variable`` is true, then the feature writer class is asked if it
has an associated class which works on Designspace files instead of UFOs,
and if so, then this is used instead.
Return the list of feature writer objects.
If the 'featureWriters' key is missing from the UFO lib, return None.
Expand Down

0 comments on commit 822c4b4

Please sign in to comment.