updating namings convension to stay coherent

This commit is contained in:
adator
2025-08-09 12:17:45 +02:00
parent 5629dcfde6
commit 1686c4a0b5
11 changed files with 113 additions and 132 deletions

View File

@@ -1,6 +1,5 @@
from re import sub
from typing import Any, Optional, Union, TYPE_CHECKING
from dataclasses import asdict
from typing import Any, Optional, TYPE_CHECKING
from datetime import datetime
if TYPE_CHECKING:
@@ -11,12 +10,10 @@ class User:
UID_DB: list['MUser'] = []
def __init__(self, baseObj: 'Base') -> None:
def __init__(self, base: 'Base'):
self.Logs = baseObj.logs
self.Base = baseObj
return None
self.Logs = base.logs
self.Base = base
def insert(self, new_user: 'MUser') -> bool:
"""Insert a new User object