Skip to content

Commit

Permalink
Remove redundant open modes
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotzbua authored and florianfesti committed Sep 5, 2023
1 parent b5f27c2 commit f0f1028
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/boxes_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def generate(self):

# check output existence
try:
stream = open(box_file, 'r')
stream = open(box_file)
except FileNotFoundError as e:
inkex.utils.debug("There was no " + box_file + " output generated. Cannot continue. Command was:")
inkex.utils.debug(str(cmd))
Expand Down

0 comments on commit f0f1028

Please sign in to comment.