Skip to content

Commit

Permalink
style: remove variable shadow
Browse files Browse the repository at this point in the history
  • Loading branch information
Apollorion committed Jun 6, 2024
1 parent 50f34b1 commit 0b68ee1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spacemk/commands/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
)
@pass_meta_key("config")
def generate(config):
def default(value, default):
return value if value is not None else default
def default(value, _default):
return value if value is not None else _default

generation_config = {
"spacelift": {
Expand Down

0 comments on commit 0b68ee1

Please sign in to comment.