7 lines
179 B
Python
7 lines
179 B
Python
|
class KingdomDB:
|
||
|
|
||
|
def __init__(self, app) -> None:
|
||
|
if "Nexon" in app.databases:
|
||
|
del app.databases["Nexon"]
|
||
|
|
||
|
app.databases["Nexon"] = self
|