Automagically set typing.Final inside your functions
Project description
auto-typing-final
Auto-fixer for Python code that adds typing.Final annotation to variable assignments inside functions that are not reassigned, and removes the annotation from variables that are mutated.
def foo() -> None:
- a = 2
+ a: typing.Final = 2
- b: typing.Final = 2
+ b = 2
b = 3
Basically, this, but handles different operations (like usage of nonlocal, augmented assignments: +=, etc) as well.
- Keeps type checker happy.
- Adds global import if it's not imported yet (
import typing/from typing import Final). - Inspects one file at a time.
- Is careful with global variables: adds Final only for uppercase variables, ignores variable that are referenced in
globalstatement inside functions in current file, and avoids removing Final when it already was set (docs). - Ignores class variables: it is common to use
typing.ClassVarinstead oftyping.Final.
How To Use
Having uv installed:
uvx auto-typing-final .
or:
pipx run auto-typing-final .
Options
You can specify --check flag to check the files instead of actually fixing them:
auto-typing-final . --check
Also, you can choose import style from two options: typing-final (default) and final:
auto-typing-final . --import-style typing-final
typing-finalenforcesimport typingandtyping.Final,finalenforcesfrom typing import FinalandFinal.
Also, you can set --ignore-global-vars flag to ignore global variables:
auto-typing-final . --ignore-global-vars
Ignore comment
You can ignore variables by adding # auto-typing-final: ignore comment to the line (docs).
VS Code Extension
The extension uses LSP server bundled with the CLI (executable name is auto-typing-final-lsp-server). To get started, add auto-typing-final to your project:
uv add auto-typing-final --dev
After that, install the extension: https://marketplace.visualstudio.com/items?itemName=vrslev.auto-typing-final. In Python environments that have auto-typing-final installed, extension will be activated automatically.
Settings
- Import style can be configured in settings:
"auto-typing-final.import-style": "typing-final"or"auto-typing-final.import-style": "final". - Ignore global variables can be configured in settings:
"auto-typing-final.ignore-global-vars": true.
Notes
Library code of currently activated environment will be ignored (for example, .venv/bin/python is active interpreter, all code inside .venv will be ignored).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file auto_typing_final-1.0.3.tar.gz.
File metadata
- Download URL: auto_typing_final-1.0.3.tar.gz
- Upload date:
- Size: 37.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e445c806458942aaa48070afd8ec1a95f68a46a258f3f06aea16cb10c56d03bb
|
|
| MD5 |
743e41f9c786549c320f7bd744b55508
|
|
| BLAKE2b-256 |
12088dda9b32e55057332fe5c3ea08c4f457b53f4b0d7aa358feab4408432cb4
|
File details
Details for the file auto_typing_final-1.0.3-py3-none-any.whl.
File metadata
- Download URL: auto_typing_final-1.0.3-py3-none-any.whl
- Upload date:
- Size: 12.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17483ac41375c8f308b798bd67257e0e9d4e79d9d6a5c979be789860207ff7d7
|
|
| MD5 |
db160844b0cce7181385c1d45832a57b
|
|
| BLAKE2b-256 |
8ea572a8518450b45206d57f4339343b5a4644ff96570aa29187969342236ce4
|