Skip to content

Commit

Permalink
Clarify default kwargs code
Browse files Browse the repository at this point in the history
  • Loading branch information
Baekalfen committed Jun 12, 2024
1 parent 032b9a2 commit 274c720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyboy/pyboy.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def __init__(

for k, v in defaults.items():
if k not in kwargs:
kwargs[k] = kwargs.get(k, defaults[k])
kwargs[k] = v

_log_level(log_level)

Expand Down

0 comments on commit 274c720

Please sign in to comment.