generated from dopt-python/py311
refactoring
This commit is contained in:
@@ -147,7 +147,7 @@ def initrec_company_get_initial_recording(
|
||||
row = ret.fetchone()
|
||||
assert row, "row was not obtained"
|
||||
|
||||
return row._asdict()
|
||||
return row._asdict() # type: ignore
|
||||
|
||||
|
||||
def initrec_company_delete_initial_recording(
|
||||
@@ -196,7 +196,7 @@ def initrec_person_update_initial_recording(
|
||||
def initrec_person_get_initial_recording(
|
||||
id_: RecId,
|
||||
) -> dict[str, Any]:
|
||||
logger.debug("[Call backend] get_initial_recording")
|
||||
logger.debug("[Call backend] get_initial_recording person")
|
||||
stmt = db.grunderfassung_personen.select().where(
|
||||
db.grunderfassung_personen.c.pers_id == id_
|
||||
)
|
||||
@@ -209,7 +209,7 @@ def initrec_person_get_initial_recording(
|
||||
row = ret.fetchone()
|
||||
assert row, "row was not obtained"
|
||||
|
||||
return row._asdict()
|
||||
return row._asdict() # type: ignore
|
||||
|
||||
|
||||
def initrec_person_delete_initial_recording(
|
||||
|
||||
Reference in New Issue
Block a user