From 737fffcd74a2c5496fff24794e07b34936d26483 Mon Sep 17 00:00:00 2001 From: Simon Cozens Date: Wed, 20 Jul 2022 06:50:44 +0100 Subject: [PATCH] Compile at least --- Lib/ufo2ft/featureWriters/variableCursWriter.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/ufo2ft/featureWriters/variableCursWriter.py b/Lib/ufo2ft/featureWriters/variableCursWriter.py index 39763ac43..3fcdfbc10 100644 --- a/Lib/ufo2ft/featureWriters/variableCursWriter.py +++ b/Lib/ufo2ft/featureWriters/variableCursWriter.py @@ -20,7 +20,7 @@ def _getAnchors(self, glyphName): entry_x_value.add_value(location, anchor.x) entry_y_value.add_value(location, anchor.y) if entry_anchor is None: - entry_anchor = ast.Anchor(x=entry_x_value, y=entry_y_value) + entry_anchor = ast.Anchor(x=entry_x_value, y=entry_y_value) if anchor.name == "exit": location = get_userspace_location( self.context.font, source.location @@ -28,5 +28,5 @@ def _getAnchors(self, glyphName): exit_x_value.add_value(location, anchor.x) exit_y_value.add_value(location, anchor.y) if exit_anchor is None: - exit_anchor = ast.Anchor(x=exit_x_value, y=exit_y_value) - return entry_anchor, exit_anchor + exit_anchor = ast.Anchor(x=exit_x_value, y=exit_y_value) + return entry_anchor, exit_anchor