6 lines
141 B
Python
6 lines
141 B
Python
from sqlalchemy.orm import Session
|
|
|
|
from ....schema.library.base import Base
|
|
|
|
def update(session:Session, library:Base):
|
|
session.commit() |