diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-08 11:32:43 +0500 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-08 11:32:43 +0500 |
commit | c20ec005d1342a988254b99ddfa98b58b2507e1b (patch) | |
tree | bb0eea716ab0f6d8cd25aa3a8e85012f5284841f | |
parent | workflows/ci: cache pip packages (diff) | |
download | cgitize-c20ec005d1342a988254b99ddfa98b58b2507e1b.tar.gz cgitize-c20ec005d1342a988254b99ddfa98b58b2507e1b.zip |
fix whitespace
-rw-r--r-- | cgitize/config.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cgitize/config.py b/cgitize/config.py index c17f9a9..ce139ea 100644 --- a/cgitize/config.py +++ b/cgitize/config.py @@ -94,9 +94,9 @@ class GitHubSection(ServiceSection): def two_part_url_auth(username, password): - if username is None or password is None: - return None - return f'{username}:{password}' + if username is None or password is None: + return None + return f'{username}:{password}' class BitbucketSection(ServiceSection): |