Finn Christiansen
d8607212da
Some checks failed
Python formatting PEP8 / Python-PEP8 (push) Failing after 18s
11 lines
182 B
Python
11 lines
182 B
Python
from typing import Generator
|
|
|
|
from db.database import SessionLocal
|
|
|
|
|
|
def get_db() -> Generator:
|
|
try:
|
|
db = SessionLocal()
|
|
yield db
|
|
finally:
|
|
db.close()
|