Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
zopyx committed May 23, 2024
1 parent 15f8859 commit 2969307
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion fastapi_auth/auth_config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from pydantic_settings import BaseSettings
from pydantic import SecretStr
import os

DEFAULT_KEY = "secret_key"
DEFAULT_DB_URI = "sqlite:///user_management.db"
Expand Down
3 changes: 1 addition & 2 deletions fastapi_auth/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
from fastapi.testclient import TestClient
import pytest
from sqlmodel import SQLModel, Field, Session, create_engine, select
from sqlmodel import SQLModel, create_engine
from ..user_management_sqlobject import UserManagement
import tempfile
import uuid

from ..demo_app import app
Expand Down
2 changes: 0 additions & 2 deletions fastapi_auth/user_management_sqlobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
from sqlmodel import SQLModel, Field, Session, create_engine, select
from datetime import datetime, timezone
import bcrypt
from rich.table import Table
from rich.console import Console


def utc_now():
Expand Down

0 comments on commit 2969307

Please sign in to comment.