diff options
-rw-r--r-- | .gitlab-ci.yml | 4 | ||||
-rwxr-xr-x | __main__.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 50332e9..9f27b83 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,9 +7,9 @@ pyflakes3: script: - apt-get update - apt-get -y -qq install python3 pyflakes3 - - pyflakes3 . + - pyflakes3 *.py image: ubuntu:18.04 - allow_failure: true + #allow_failure: true .compile: stage: build diff --git a/__main__.py b/__main__.py index ef52fa7..10c19a8 100755 --- a/__main__.py +++ b/__main__.py @@ -10,7 +10,7 @@ ##################################### import requests, json, traceback, subprocess, sys, time, os, uuid, base64 -import threading #hmac, struct # < - TODO: Necessary for TOTP-remember support +#import threading #hmac, struct # < - TODO: Necessary for TOTP-remember support import tkinter as tk from tkinter.messagebox import showinfo, showerror, askyesno from functools import partial |