From 7ed3912d7df093a587b575433232f94e2df11e59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B8=D1=85=D0=B0=D0=B8=D0=BB?= Date: Mon, 29 Sep 2025 15:20:07 -0700 Subject: [PATCH 1/3] chore: ignore pre-commit config --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index ddc2bd11..0f7029da 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ venv/ # due to using nox and pytest .nox .cache +.pre-commit-config.yaml \ No newline at end of file From 3d53cce243ef47f9954e383a29cfc423f1f79739 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B8=D1=85=D0=B0=D0=B8=D0=BB?= Date: Mon, 29 Sep 2025 15:36:49 -0700 Subject: [PATCH 2/3] PEP8 WIP (#227) Closes #227 --- src/sample/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sample/__init__.py b/src/sample/__init__.py index c8f10649..18cc4f31 100644 --- a/src/sample/__init__.py +++ b/src/sample/__init__.py @@ -1,3 +1,3 @@ -def main(): - """Entry point for the application script""" +def main() -> None: + """Entry point for the application script.""" print("Call your main application code here") From c23a5d17569b736906a0874c046acc65a0d63548 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B8=D1=85=D0=B0=D0=B8=D0=BB?= Date: Mon, 29 Sep 2025 15:42:11 -0700 Subject: [PATCH 3/3] docs: update README with PEP8 reference (#227) Closes #227 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d6c10ebb..c6a04124 100644 --- a/README.md +++ b/README.md @@ -37,3 +37,4 @@ may be appropriate. [rst]: http://docutils.sourceforge.net/rst.html [md]: https://tools.ietf.org/html/rfc7764#section-3.5 "CommonMark variant" [md use]: https://packaging.python.org/specifications/core-metadata/#description-content-type-optional +Additionally: adhere to [PEP8](https://peps.python.org/pep-0008/) when writing code. \ No newline at end of file