7 lines
202 B
Python
7 lines
202 B
Python
class Database:
|
|
|
|
def __init__(self, name, path):
|
|
self.name = name
|
|
self.path = path
|
|
self.device_list = [] # List of the canonical names of devices registered in this database
|