Add type hints to models.py
Summary
Introduce type hints in models.py
. #144 (closed)
Focus
This MR adds many type hints to models.py
, but is not complete. Also, probaby not all type hints are fully correct and will have to be checked, in particular whether really all Optional
arguments are actually optional, i.e. are allowed to be None
.
Test Environment
Regular test environment.
Check List for the Author
Please, prepare your MR for a review. Be sure to write a summary and a focus and create gitlab comments for the reviewer. They should guide the reviewer through the changes, explain your changes and also point out open questions. For further good practices have a look at our review guidelines
-
All automated tests pass -
Reference related issues -
Up-to-date CHANGELOG.md (or not necessary) -
Annotations in code (Gitlab comments) - Intent of new code
- Problems with old code
- Why this implementation?
Check List for the Reviewer
-
I understand the intent of this MR -
All automated tests pass -
Up-to-date CHANGELOG.md (or not necessary) -
The test environment setup works and the intended behavior is reproducible in the test environment -
In-code documentation and comments are up-to-date. -
Check: Are there specifications? Are they satisfied?
For further good practices have a look at our review guidelines.
Merge request reports
Activity
assigned to @henrik
mentioned in issue #80
mentioned in issue #77 (closed)
added 99 commits
Toggle commit listmentioned in issue #144 (closed)
added 518 commits
-
d5c380f5...94de0ce0 - 517 commits from branch
dev
- 1e3e8edb - Merge branch 'dev' into f-type-hints
-
d5c380f5...94de0ce0 - 517 commits from branch
assigned to @joschaschmiedt
added 99 commits
-
1e3e8edb...1ecb0883 - 98 commits from branch
dev
- db92c531 - Merge branch 'dev' into 'f-type-hints'
-
1e3e8edb...1ecb0883 - 98 commits from branch
added 1 commit
- 30b7c58e - Fix error in _Properties.to_xml due to Importance enum
added 1 commit
- 48e74e1f - Move typing imports behin TYPE_CHECKING guard
added 2 commits
added 33 commits
-
6ffb356b...e042a85a - 32 commits from branch
dev
- 0dd1adbd - Merge remote-tracking branch 'origin/dev' into f-type-hints
-
6ffb356b...e042a85a - 32 commits from branch
added 1 commit
- 34ca7c3a - Add more type hints to models.py and datatype.py
I have a couple of open questions:
- What is the difference between the values that
inheritance
andimportance
can take? - Are permissions
str
orPermission
? - Are permissions ever optional?
Edited by Joscha Schmiedt- What is the difference between the values that
I see. Is the overlap in possible values for inheritance and importance (see docs here) something that my change in the future?
If so, it may makes sense to have two different types for them, i.e.
INHERITANCE = Literal["OBLIGATORY", "SUGGESTED", "RECOMMENDED", "ALL", "NONE"] IMPORTANCE = Literal["OBLIGATORY", "SUGGESTED", "RECOMMENDED", "FIX", "NONE"]
Edited by Joscha Schmiedt