Skip to content

Commit

Permalink
Merge pull request #43 from cloudblue/bump_dependencies
Browse files Browse the repository at this point in the history
Bump dependencies
  • Loading branch information
ffaraone authored Oct 25, 2022
2 parents bc8dd1b + a1fc39f commit fa51f4d
Show file tree
Hide file tree
Showing 5 changed files with 181 additions and 339 deletions.
2 changes: 1 addition & 1 deletion connect/eaas/core/decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def wrapper(cls):
declared_vars = getattr(cls, VARIABLES_INFO_ATTR_NAME)
for variable in variables:
name = variable['name']
if len(list(filter(lambda x: x['name'] == name, declared_vars))) == 0:
if len(list(filter(lambda x: x['name'] == name, declared_vars))) == 0: # noqa: B023
declared_vars.append(variable)
return cls
setattr(cls, VARIABLES_INFO_ATTR_NAME, variables)
Expand Down
Loading

0 comments on commit fa51f4d

Please sign in to comment.