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 11, 2024
1 parent 207f247 commit a375806
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/ufo2ft/_compilers/ttfCompiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class TTFCompiler(BaseCompiler):
dropImpliedOnCurves: bool = False
allQuadratic: bool = True

def compileOutlines(self, ufo, glyphSet, layerName=None):
def compileOutlines(self, ufo, glyphSet):
kwargs = prune_unknown_kwargs(self.__dict__, self.outlineCompilerClass)
kwargs["glyphDataFormat"] = 0 if self.allQuadratic else 1
outlineCompiler = self.outlineCompilerClass(ufo, glyphSet=glyphSet, **kwargs)
Expand Down

0 comments on commit a375806

Please sign in to comment.