Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 20, 2023
1 parent fc52901 commit f2e1064
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stpipe/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __subclasshook__(cls, C):
save_signature = inspect.signature(C.save)
target_signature = inspect.signature(cls.save)
for parameter in target_signature.parameters:
if parameter == 'self':
if parameter == "self":
pass
# check that this parameter/argument exists in the save function
if parameter not in save_signature.parameters:
Expand Down

0 comments on commit f2e1064

Please sign in to comment.