diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ecc9f56c..ee4e4df8 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,4 +1,11 @@ repos: + - repo: https://github.com/numpy/numpydoc + rev: v1.8.0 + hooks: + - id: numpydoc-validation + files: ^src/ + exclude: ^tests/ + - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.5.0 hooks: diff --git a/src/scribe_data/load/send_dbs_to_scribe.py b/src/scribe_data/load/send_dbs_to_scribe.py index e5e56509..f6796774 100644 --- a/src/scribe_data/load/send_dbs_to_scribe.py +++ b/src/scribe_data/load/send_dbs_to_scribe.py @@ -81,14 +81,14 @@ ) language_db_dict["translation"]["full_path_to_scribe_ios_db"] = ( PATH_TO_SCRIBE_DATA_ROOT.parent - / f"{language_db_dict["translation"]['scribe_ios_db_path']}" + / f"{language_db_dict['translation']['scribe_ios_db_path']}" ) language_db_dict["translation"]["scribe_android_db_path"] = ( get_android_data_path() / "TranslationData.sqlite" ) language_db_dict["translation"]["full_path_to_scribe_android_db"] = ( PATH_TO_SCRIBE_DATA_ROOT.parent - / f"{language_db_dict["translation"]['scribe_android_db_path']}" + / f"{language_db_dict['translation']['scribe_android_db_path']}" ) for language in language_db_dict: