Skip to content

Commit

Permalink
ops missed .keys() for #1014 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Furtif committed Jan 24, 2024
1 parent aafe90b commit cdb0f04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1206,7 +1206,7 @@ def __init__(self):
self.elsbutton.toggled.connect(self.els)

# languages setting
if "LANG" not in os.environ:
if "LANG" not in os.environ.keys():
os.environ["LANG"] = "en_US"
langlayout = widgets.QHBoxLayout()
self.langcombo = widgets.QComboBox()
Expand Down

0 comments on commit cdb0f04

Please sign in to comment.