Skip to content

Commit

Permalink
Linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
avanwinkle committed Sep 1, 2024
1 parent 811c04c commit 922df34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion mpf/config_players/plugin_player.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def play(self, settings, context, calling_context, priority=0, **kwargs):
for s, settings_dict in settings.items():
for key, value in settings_dict.items():
if isinstance(value, (BaseTemplate, NativeTypeTemplate)):
if not s in eval_settings:
if s not in eval_settings:
eval_settings[s] = settings_dict.copy()
eval_settings[s][key] = value.evaluate(kwargs)

Expand Down
1 change: 1 addition & 0 deletions mpf/modes/attract/code/attract.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from mpf.modes.carousel.code.carousel import Carousel


class Attract(Carousel):

"""Default mode running in a machine when a game is not in progress.
Expand Down

0 comments on commit 922df34

Please sign in to comment.