Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

switch from docopt to docopt-ng #927

Merged
merged 3 commits into from
Aug 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove unnecessary parentheses (trigger CI)
  • Loading branch information
n-gao committed Aug 23, 2024
commit cba5224fad573b1594ea7926958aa230e6d2190b
2 changes: 1 addition & 1 deletion sacred/config/custom_containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def update(self, iterable=None, **kwargs):
for key in iterable:
self[key] = iterable[key]
else:
for (key, value) in iterable:
for key, value in iterable:
self[key] = value
for key in kwargs:
self[key] = kwargs[key]
Expand Down