Make PEP8 finally happy

pull/4/head
Darksider3 5 years ago
parent 290e72f159
commit 43c7636920

@ -23,4 +23,4 @@ if __name__ == "__main__":
print(ret.getvalue(), file=f) print(ret.getvalue(), file=f)
exit(0) exit(0)
except KeyboardInterrupt as e: except KeyboardInterrupt as e:
pass pass

@ -29,4 +29,4 @@ logging.basicConfig(format="%(asctime)s: %(message)s",
level=int(config['LOG_LEVEL']['log_level']) level=int(config['LOG_LEVEL']['log_level'])
) )
del cwd del cwd
REG_FILE = config['DEFAULT']['applications_db'] REG_FILE = config['DEFAULT']['applications_db']

@ -146,7 +146,8 @@ class System:
return False return False
return True return True
def printTuple(self, tup: tuple) -> None: @staticmethod
def printTuple(tup: tuple) -> None:
"""Prints a tuple with spaces as separators """Prints a tuple with spaces as separators
:param tup: Tuple you want to print :param tup: Tuple you want to print
@ -190,7 +191,7 @@ if __name__ == "__main__":
S.register("dar") S.register("dar")
S.lock_user_pw("dar") S.lock_user_pw("dar")
S.add_to_usergroup("dar") S.add_to_usergroup("dar")
#if not S.make_ssh_usable("dar", "SSHpub"): # if not S.make_ssh_usable("dar", "SSHpub"):
# print("Huh, error :shrug:") # print("Huh, error :shrug:")
exit(0) exit(0)
except KeyboardInterrupt: except KeyboardInterrupt:

@ -1,6 +1,6 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
import sqlite3 import sqlite3
from sys import stderr as STDERR from sys import stderr as stderr
# create dictionary out of sqlite results # create dictionary out of sqlite results
@ -32,16 +32,16 @@ class SQLitedb:
self.connection = sqlite3.connect(db) self.connection = sqlite3.connect(db)
self.cursor = self.connection.cursor() self.cursor = self.connection.cursor()
except sqlite3.Error as e: except sqlite3.Error as e:
print("Connection error: %s" % e, file=STDERR) print("Connection error: %s" % e, file=stderr)
self.cursor.row_factory = dict_factory # every result will be a dict now self.cursor.row_factory = dict_factory # every result will be a dict now
def __del__(self): def __del__(self):
try: try:
self.connection.commit() self.connection.commit()
self.connection.close() self.connection.close()
except sqlite3.Error as e: except sqlite3.Error as e:
print("Couldn't gracefully close db: %s" % e, file=STDERR) print("Couldn't gracefully close db: %s" % e, file=stderr)
def query(self, qq: str) -> list: def query(self, qq: str) -> list:
"""Do a query and automagically get the fetched results in a list """Do a query and automagically get the fetched results in a list
@ -55,7 +55,7 @@ class SQLitedb:
self.cursor.execute(qq) self.cursor.execute(qq)
self.last_result = self.cursor.fetchall() self.last_result = self.cursor.fetchall()
except sqlite3.Error as e: except sqlite3.Error as e:
print("Couldn't execute query %s, exception: %s" % (qq, e), file=STDERR) print("Couldn't execute query %s, exception: %s" % (qq, e), file=stderr)
self.last_result = [] self.last_result = []
return self.last_result return self.last_result
@ -81,10 +81,10 @@ class SQLitedb:
self.cursor.execute(qq, deliver) self.cursor.execute(qq, deliver)
self.last_result = self.cursor.fetchall() self.last_result = self.cursor.fetchall()
except sqlite3.Error as e: except sqlite3.Error as e:
print("Couldn't execute query %s, exception: %s" % (qq, e), file=STDERR) print("Couldn't execute query %s, exception: %s" % (qq, e), file=stderr)
self.last_result = [] self.last_result = []
except TypeError as e: except TypeError as e:
print("Types in given tuple doesnt match to execute query \"%s\": %s" % (qq, e), file=STDERR) print("Types in given tuple doesnt match to execute query \"%s\": %s" % (qq, e), file=stderr)
self.last_result = [] self.last_result = []
return self.last_result return self.last_result

Loading…
Cancel
Save