Skip to content

Commit 451184a

Browse files
authored
Merge pull request #64 from uclahs-cds/aholmes-fix-type-annotation-error
Fix type annotation error
2 parents d2ea6d7 + ffdaeb6 commit 451184a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1212
# `BL_Python.web` [0.2.1] - 2024-05-16
1313
- [BL_Python.web v0.2.1](https://github.com/uclahs-cds/BL_Python/blob/BL_Python.web-v0.2.1/src/web/CHANGELOG.md#021---2024-05-16)
1414

15-
# `BL_Python.platform` [0.2.1] - 2024-05-16
16-
- [BL_Python.platform v0.2.1](https://github.com/uclahs-cds/BL_Python/blob/BL_Python.platform-v0.2.1/src/platform/CHANGELOG.md#021---2024-05-16)
15+
# `BL_Python.platform` [0.2.2] - 2024-05-16
16+
- [BL_Python.platform v0.2.2](https://github.com/uclahs-cds/BL_Python/blob/BL_Python.platform-v0.2.2/src/platform/CHANGELOG.md#021---2024-05-16)
1717

1818
# [0.2.0] - 2024-05-14
1919
### Added
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__: str = "0.2.1"
1+
__version__: str = "0.2.2"

src/platform/BL_Python/platform/identity/user_loader.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def user_loader(
104104
# relationships and referencing the relevant columns.
105105
user_table_property_mapper = cast(Mapper, class_mapper(self._user_table))
106106
user_table_properties = cast(
107-
list[RelationshipProperty[DbRole] | ColumnProperty],
107+
"list[RelationshipProperty[DbRole] | ColumnProperty]",
108108
user_table_property_mapper.iterate_properties, # pyright: ignore[reportUnknownMemberType]
109109
)
110110
# Only extract the secondary join table (user_role).

src/platform/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Review the `BL_Python` [CHANGELOG.md](https://github.com/uclahs-cds/BL_Python/bl
1010

1111
---
1212

13-
## [0.2.1] - 2024-05-16
13+
## [0.2.2] - 2024-05-16
1414
### Changed
1515
- Ignore sentinel files created by `make`.
1616

0 commit comments

Comments
 (0)