Minor documentation improvement in utilities.py

This commit is contained in:
2024-11-01 18:12:34 -05:00
parent 01f6d348cd
commit b7d9b256d9
2 changed files with 7 additions and 0 deletions

View File

@@ -1,8 +1,14 @@
"""utilities.py
This module provides utility functions for database connection, string manipulation, and IP address handling.
"""
import os
from typing import Optional
from fastapi import Request
from peewee import PostgresqlDatabase
# globally referenced
is_development = os.getenv("ENVIRONMENT") == "development"