Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
boxed committed Oct 26, 2024
1 parent 4ea5854 commit 8fc5bb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mutmut/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,7 @@ def s(key, default):
return default
if isinstance(default, list):
result = [x for x in result.split("\n") if x]
elif isinstance(default,bool):
elif isinstance(default, bool):
result = result.lower() in ('1', 't', 'true')
elif isinstance(default, int):
result = int(result)
Expand Down

0 comments on commit 8fc5bb7

Please sign in to comment.