Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
pchtsp committed Jul 12, 2024
1 parent 7d7c1b4 commit ebf8efb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pulp/apis/copt_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -905,7 +905,7 @@ def __init__(
# for some reason, using os.devnull does not work.
if operating_system == "win":
# windows doesn't have /dev/null
devnull = open('nul', "w")
devnull = open("nul", "w")
else:
# linux and mac should have /dev/null
devnull = open("/dev/null", "w")
Expand Down

0 comments on commit ebf8efb

Please sign in to comment.