Skip to content

Commit 3479b9c

Browse files
committed
fix: make lint happy
1 parent 329cb60 commit 3479b9c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

gitlab/config.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,10 @@ def __init__(
155155
value = getattr(self, attr)
156156
prefix = "lookup:"
157157
if isinstance(value, str) and value.lower().strip().startswith(prefix):
158-
helper = value[len(prefix):].strip()
159-
value = subprocess.check_output(helper, shell=True).decode("utf-8").strip()
158+
helper = value[len(prefix) :].strip()
159+
value = (
160+
subprocess.check_output(helper, shell=True).decode("utf-8").strip()
161+
)
160162
setattr(self, attr, value)
161163

162164
self.api_version = "4"

0 commit comments

Comments
 (0)