From b07f1013a4f11e11c6063ed2dd0364f4edafb92f Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sun, 10 Dec 2023 06:25:34 -0600 Subject: [PATCH] importer: Note pydocstyle updates --- src/unihan_db/importer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/unihan_db/importer.py b/src/unihan_db/importer.py index 48ba2f33..94d8fba9 100644 --- a/src/unihan_db/importer.py +++ b/src/unihan_db/importer.py @@ -1,4 +1,5 @@ # flake8: noqa: PERF401 +"""Import functionality for UNIHAN DB.""" import typing as t from unihan_db.tables import ( @@ -61,6 +62,7 @@ def import_char( ], ], ) -> None: + """Import character data into Unhn model (row in Unhn table).""" if "kDefinition" in char: for kd in char["kDefinition"]: c.kDefinition.append(kDefinition(definition=kd))