From ebf8efbd0afddd7863d6d1a56908b427e85bd9cd Mon Sep 17 00:00:00 2001 From: pchtsp Date: Fri, 12 Jul 2024 10:15:00 +0200 Subject: [PATCH] linter --- pulp/apis/copt_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pulp/apis/copt_api.py b/pulp/apis/copt_api.py index cbaf3adb..71183480 100644 --- a/pulp/apis/copt_api.py +++ b/pulp/apis/copt_api.py @@ -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")