Skip to content

Commit

Permalink
Merge pull request #23 from apple1417/master
Browse files Browse the repository at this point in the history
fix enum name linting
  • Loading branch information
apple1417 authored May 9, 2024
2 parents a72cb09 + 6cadf99 commit 2284859
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bl3_mod_menu/options_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def inner() -> Iterator[BaseOption]:

description = mod.description
if Game.get_current() not in mod.supported_games:
supported = [g.name for g in Game if g in mod.supported_games]
supported = [g.name for g in Game if g in mod.supported_games and g.name is not None]
description = (
"<font color='#ffff00'>Incompatible Game!</font>\r"
"This mod supports: " + ", ".join(supported) + "\n\n" + description
Expand Down

0 comments on commit 2284859

Please sign in to comment.