Skip to content

Commit

Permalink
fix flake warning
Browse files Browse the repository at this point in the history
  • Loading branch information
prusnak committed Jan 4, 2024
1 parent 308aae0 commit 17b148f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mnemonic/mnemonic.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def detect_language(cls, code: str) -> str:
if len(possible) == 1:
return possible.pop().language
raise ConfigurationError(
f"Language ambiguous between {', '.join( p.language for p in possible)}"
f"Language ambiguous between {', '.join(p.language for p in possible)}"
)

def generate(self, strength: int = 128) -> str:
Expand Down

0 comments on commit 17b148f

Please sign in to comment.