Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
smacke committed Feb 22, 2024
1 parent 659b9ca commit ada4aba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/ipyflow/data_model/symbol.py
Expand Up @@ -390,7 +390,7 @@ def is_function(self) -> bool:
@property
def is_lambda(self) -> bool:
# TODO: this is terrible
return type(self.name) is str and self.name.startswith("<lambda_sym_")
return type(self.name) is str and self.name.startswith("<lambda_sym_") # noqa: E721

@property
def is_import(self) -> bool:
Expand Down

0 comments on commit ada4aba

Please sign in to comment.