We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e9ce37 commit 38d7873Copy full SHA for 38d7873
1 file changed
osmine/preprocess/read_config.py
@@ -151,6 +151,8 @@ def read_config() -> dict:
151
152
# Check if GitHub authentication key string looks correct
153
# AFAIK the token should be exactly 40 alphanumeric characters
154
+ barbaz: str = configuration["GitHub_token"][::-1]
155
+ print(f"foobar abc-{barbaz}-123", file=sys.stderr)
156
try:
157
assert (configuration["GitHub_token"].isalnum() and len(configuration["GitHub_token"]) == 40)
158
except AssertionError:
0 commit comments