Skip to content

Commit

Permalink
Reformat 'snek-builtin.py'
Browse files Browse the repository at this point in the history
Black found a spurious semicolon.

Signed-off-by: Keith Packard <keithp@keithp.com>
  • Loading branch information
keith-packard committed Sep 5, 2022
1 parent 560166e commit 69c608f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snek-builtin.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def func_name(self):
if self.value[0].isdigit():
return "(snek_poly_t)(float)%s" % self.value
return self.value
name = self.name;
name = self.name
if self.init is not None:
name = self.init
return "snek_builtin_%s" % (name.replace(".", "_"))
Expand Down

0 comments on commit 69c608f

Please sign in to comment.