Skip to content

Commit 14580ae

Browse files
committed
Fix redundant string check
implement lincoln's redundancy fix
1 parent 367b698 commit 14580ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def add_seed(col, sound, l, button):
224224

225225
def add_seed(col, sound, l, button):
226226
seed_str = row[col]
227-
if seed_str and seed_str != "":
227+
if seed_str:
228228
seed = int(seed_str, 16)
229229
eng_lg = frlg_seeds["lg"][sound][l][button]
230230
for held in eng_lg.keys():

0 commit comments

Comments
 (0)