Skip to content

Commit 7a62a1b

Browse files
Евгений БлиновЕвгений Блинов
authored andcommitted
some codestyle
1 parent 7d617d4 commit 7a62a1b

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

transfunctions/transformer.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ def __init__(self, function: Callable, decorator_lineno: int) -> None:
2020
if self.is_lambda(function):
2121
raise ValueError("Only regular or generator functions can be used as a template for @transfunction. Don't use lambdas here.")
2222

23-
2423
self.function = function
2524
self.decorator_lineno = decorator_lineno
2625

@@ -164,7 +163,7 @@ def wrap_ast_by_closures(self, tree):
164163
args=[],
165164
kwonlyargs=[],
166165
kw_defaults=[],
167-
defaults=[]
166+
defaults=[],
168167
),
169168
decorator_list=[],
170169
)

0 commit comments

Comments
 (0)