1
0

ChannelDB: (trivial) add prefix to names of db methods

(and some type annotations)

This makes it clear these methods are not public.
This commit is contained in:
SomberNight
2020-03-03 03:54:36 +01:00
parent 53564f2496
commit 3f9e761b67
2 changed files with 22 additions and 15 deletions

View File

@@ -56,3 +56,6 @@ class SqlDB(Logger):
self.conn.commit()
self.conn.close()
self.logger.info("SQL thread terminated")
def create_database(self):
raise NotImplementedError()