Fix typos.

This commit is contained in:
2025-09-02 07:59:40 +10:00
parent d71a40965e
commit 9209dbaa8d
4 changed files with 4 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ CREATE TABLE version_history(
from_version INTEGER NOT NULL, from_version INTEGER NOT NULL,
to_version INTEGER NOT NULL, to_version INTEGER NOT NULL,
author TEXT NOT NULL, author TEXT NOT NULL,
_timestamp TIMESTAMPTZ NOT NULL DEFAULT NOW(), _timestamp TIMESTAMPTZ NOT NULL DEFAULT NOW()
); );
INSERT INTO version_history (component, from_version, to_version, author) VALUES ('ROOT', 0, 1, 'Initial Creation'); INSERT INTO version_history (component, from_version, to_version, author) VALUES ('ROOT', 0, 1, 'Initial Creation');

View File

@@ -14,6 +14,7 @@ import aiohttp
from .config import conf from .config import conf
from utils.ratelimits import Bucket, BucketOverFull, BucketFull from utils.ratelimits import Bucket, BucketOverFull, BucketFull
from utils.lib import utc_now
log_logger = logging.getLogger(__name__) log_logger = logging.getLogger(__name__)