Make PEP8 finally happy
This commit is contained in:
parent
290e72f159
commit
43c7636920
4 changed files with 12 additions and 11 deletions
|
@ -23,4 +23,4 @@ if __name__ == "__main__":
|
|||
print(ret.getvalue(), file=f)
|
||||
exit(0)
|
||||
except KeyboardInterrupt as e:
|
||||
pass
|
||||
pass
|
||||
|
|
|
@ -29,4 +29,4 @@ logging.basicConfig(format="%(asctime)s: %(message)s",
|
|||
level=int(config['LOG_LEVEL']['log_level'])
|
||||
)
|
||||
del cwd
|
||||
REG_FILE = config['DEFAULT']['applications_db']
|
||||
REG_FILE = config['DEFAULT']['applications_db']
|
||||
|
|
|
@ -146,7 +146,8 @@ class System:
|
|||
return False
|
||||
return True
|
||||
|
||||
def printTuple(self, tup: tuple) -> None:
|
||||
@staticmethod
|
||||
def printTuple(tup: tuple) -> None:
|
||||
"""Prints a tuple with spaces as separators
|
||||
|
||||
:param tup: Tuple you want to print
|
||||
|
@ -190,7 +191,7 @@ if __name__ == "__main__":
|
|||
S.register("dar")
|
||||
S.lock_user_pw("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:")
|
||||
exit(0)
|
||||
except KeyboardInterrupt:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
import sqlite3
|
||||
from sys import stderr as STDERR
|
||||
from sys import stderr as stderr
|
||||
|
||||
|
||||
# create dictionary out of sqlite results
|
||||
|
@ -32,16 +32,16 @@ class SQLitedb:
|
|||
self.connection = sqlite3.connect(db)
|
||||
self.cursor = self.connection.cursor()
|
||||
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):
|
||||
try:
|
||||
self.connection.commit()
|
||||
self.connection.close()
|
||||
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:
|
||||
"""Do a query and automagically get the fetched results in a list
|
||||
|
@ -55,7 +55,7 @@ class SQLitedb:
|
|||
self.cursor.execute(qq)
|
||||
self.last_result = self.cursor.fetchall()
|
||||
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 = []
|
||||
return self.last_result
|
||||
|
||||
|
@ -81,10 +81,10 @@ class SQLitedb:
|
|||
self.cursor.execute(qq, deliver)
|
||||
self.last_result = self.cursor.fetchall()
|
||||
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 = []
|
||||
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 = []
|
||||
return self.last_result
|
||||
|
||||
|
|
Loading…
Reference in a new issue