The following issues were found
docs_src/sql_databases/sql_app/database.py
1 issues
Missing module docstring
Error
Line: 1
Column: 1
from sqlalchemy import create_engine
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import sessionmaker
SQLALCHEMY_DATABASE_URL = "sqlite:///./sql_app.db"
# SQLALCHEMY_DATABASE_URL = "postgresql://user:password@postgresserver/db"
engine = create_engine(
SQLALCHEMY_DATABASE_URL, connect_args={"check_same_thread": False}
Reported by Pylint.
fastapi/types.py
1 issues
Missing module docstring
Error
Line: 1
Column: 1
from typing import Any, Callable, TypeVar
DecoratedCallable = TypeVar("DecoratedCallable", bound=Callable[..., Any])
Reported by Pylint.