From 25b60632c3cb43842009299e56199b1cbed17770 Mon Sep 17 00:00:00 2001 From: Justus Lind Date: Fri, 29 Dec 2023 20:31:34 +1000 Subject: [PATCH] Fix warnings... --- worlds/musedash/MuseDashCollection.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/worlds/musedash/MuseDashCollection.py b/worlds/musedash/MuseDashCollection.py index 1f77f362c46b..6cd27c696c93 100644 --- a/worlds/musedash/MuseDashCollection.py +++ b/worlds/musedash/MuseDashCollection.py @@ -84,17 +84,17 @@ def __init__(self) -> None: if song_name in self.DIFF_OVERRIDES: # These songs use non-standard difficulty values. Which are being overriden with standard values. # But also avoid filling any missing difficulties (i.e. 0s) with a difficulty value. - if sections[4] is not '0': + if sections[4] != '0': diff_of_easy = 4 else: diff_of_easy = None - if sections[5] is not '0': + if sections[5] != '0': diff_of_hard = 7 else: diff_of_hard = None - if sections[6] is not '0': + if sections[6] != '0': diff_of_master = 10 else: diff_of_master = None