Skip to content

Commit

Permalink
That's actually just stupid
Browse files Browse the repository at this point in the history
  • Loading branch information
lyxal authored Nov 24, 2024
1 parent 16c7596 commit 66dfc9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vyxal/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def execute_vyxal(
if "f" in flags: # Read inputs from file
with open(inputs[0], "r", encoding="utf-8") as f:
inputs = [x.rstrip("\r\n") for x in f.readlines()]
else if "□" in flags: # If STDIN file, read it all and set the inputs to that
elif "□" in flags: # If STDIN file, read it all and set the inputs to that
stdin = open(0)
if stdin:
inputs = [x.rstrip("\r\n") for x in stdin]
Expand Down

0 comments on commit 66dfc9b

Please sign in to comment.