Fix Dict[str, any] type annotation — lowercase any refers to builtin function
#15
Labels
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: cal/paper-dynasty-card-creation#15
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
pitchers/creation.py:311andbatters/creation.py:231—Dict[str, any]referencesany()builtin, nottyping.Any. Silent type annotation error.Priority: low | Labels: bug, tech-debt
Fixed in PR #31: #31
Added
Anyto thetypingimports in both files and updated thecardsetparameter annotation fromDict[str, any]toDict[str, Any]inpitchers/creation.pyandbatters/creation.py.