Compare commits

...

2 Commits

Author SHA1 Message Date
Timmy Welch
f1735c879d Don't inherit from argparse Namespace 2024-06-06 19:33:07 -07:00
pre-commit-ci[bot]
afdc11eb6f
[pre-commit.ci] pre-commit autoupdate
updates:
- [github.com/asottile/reorder-python-imports: v3.12.0 → v3.13.0](https://github.com/asottile/reorder-python-imports/compare/v3.12.0...v3.13.0)
- [github.com/hhatto/autopep8: v2.1.1 → v2.2.0](https://github.com/hhatto/autopep8/compare/v2.1.1...v2.2.0)
2024-06-03 17:17:48 +00:00
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ repos:
hooks:
- id: setup-cfg-fmt
- repo: https://github.com/asottile/reorder-python-imports
rev: v3.12.0
rev: v3.13.0
hooks:
- id: reorder-python-imports
args: [--py38-plus, --add-import, 'from __future__ import annotations']
@ -34,7 +34,7 @@ repos:
args: [--py38-plus]
exclude: tests
- repo: https://github.com/hhatto/autopep8
rev: v2.1.1
rev: v2.2.0
hooks:
- id: autopep8
- repo: https://github.com/PyCQA/flake8

View File

@ -367,7 +367,7 @@ class Setting:
return self.argparse_args, self.filter_argparse_kwargs()
class TypedNS(Namespace):
class TypedNS():
def __init__(self) -> None:
raise TypeError('TypedNS cannot be instantiated')