summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2024-02-05 19:22:39 -0300
committerJesusaves <cpntb1@ymail.com>2024-02-05 19:22:39 -0300
commitca7b2ea8dd2c2894678858414f4688f96f654e22 (patch)
treef4033325e220ced08fa317dae8717d76d25df3ca
parentefca87a1a71d76c9ce461f677ee1128156ee3e45 (diff)
downloadtkinter-ca7b2ea8dd2c2894678858414f4688f96f654e22.tar.gz
tkinter-ca7b2ea8dd2c2894678858414f4688f96f654e22.tar.bz2
tkinter-ca7b2ea8dd2c2894678858414f4688f96f654e22.tar.xz
tkinter-ca7b2ea8dd2c2894678858414f4688f96f654e22.zip
Make pyflakes3 compulsory, and don't check modules
-rw-r--r--.gitlab-ci.yml4
-rwxr-xr-x__main__.py2
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