From 27fd1a451866655b92afb84b186f9d65e38e5e34 Mon Sep 17 00:00:00 2001 From: Travis Abendshien <46939827+CyanVoxel@users.noreply.github.com> Date: Wed, 5 Aug 2026 16:15:10 -0700 Subject: [PATCH] fix(docs): fix broken PEP 8 link --- docs/style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/style.md b/docs/style.md index 5f8b9001..901d309a 100644 --- a/docs/style.md +++ b/docs/style.md @@ -28,7 +28,7 @@ TagStudio provides an [EditorConfig](https://editorconfig.org/#example-file) fil ### :material-code-braces-box: Syntax Guidelines -- Python files should always follow the [**PEP 8**]() style guide conventions, unless specifically allowed otherwise. +- Python files should always follow the [**PEP 8**](https://peps.python.org/pep-0008/) style guide conventions, unless specifically allowed otherwise. - The most notable exception in our project is the line length limit of **100** characters, which is enforced via ruff. - Internal Qt methods also use `camelCase` instead of `snake_case`, so overrides of those are commonly seen in the codebase. - Classes and attributes considered to be "[private](https://docs.python.org/3/tutorial/classes.html#private-variables)" should be prepended with a **single underscore** (e.g. `_internal_method()`).