Skip to content

Commit 7a7c9fd

Browse files
committed
chore: make lint happy
1 parent 9dfb4cd commit 7a7c9fd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

gitlab/config.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ def _env_config() -> List[str]:
3939

4040
HELPER_ATTRIBUTES = ["job_token", "http_password", "private_token", "oauth_token"]
4141

42+
4243
class ConfigError(Exception):
4344
pass
4445

@@ -210,4 +211,4 @@ def _get_values_from_helper(self):
210211
if value.lower().strip().startswith(HELPER_PREFIX):
211212
helper = expanduser(value[len(HELPER_PREFIX) :].strip())
212213
value = subprocess.check_output([helper]).decode("utf-8").strip()
213-
setattr(self, attr, value)
214+
setattr(self, attr, value)

0 commit comments

Comments
 (0)