We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 329cb60 commit 3479b9cCopy full SHA for 3479b9c
gitlab/config.py
@@ -155,8 +155,10 @@ def __init__(
155
value = getattr(self, attr)
156
prefix = "lookup:"
157
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()
+ helper = value[len(prefix) :].strip()
+ value = (
160
+ subprocess.check_output(helper, shell=True).decode("utf-8").strip()
161
+ )
162
setattr(self, attr, value)
163
164
self.api_version = "4"
0 commit comments