Skip to content
Snippets Groups Projects
Commit 1967921c authored by Joscha Schmiedt's avatar Joscha Schmiedt
Browse files

Merge branch 'f-191-fix-mypy-errors-in-models-py-and-complete-type-hints' into 'dev'

Resolve "Fix mypy errors in models.py and complete type hints"

See merge request !134
parents 4b0685bc aa33a694
Branches
Tags
2 merge requests!143Release 0.15.0,!134Resolve "Fix mypy errors in models.py and complete type hints"
Pipeline #50462 passed with warnings
......@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ###
* Support for Python 3.12
* The `linkahead` module now opts into type checking and supports mypy.
### Changed ###
......
......@@ -44,7 +44,7 @@ lint:
.PHONY: lint
mypy:
mypy src/linkahead/common unittests
mypy src/linkahead/common unittests --exclude high_level_api.py --exclude connection.py
.PHONY: mypy
unittest:
......
This diff is collapsed.
......@@ -354,6 +354,10 @@ class UnqualifiedPropertiesError(EntityError):
"""
class EntityHasNoAclError(EntityError):
"""This entity has no ACL (yet)."""
class EntityDoesNotExistError(EntityError):
"""This entity does not exist."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment