-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Polars spreadsheet type changes (#780)
* Fixes up type hints and imports for polars spreadsheet writer In python 3.9 at least things weren't working. The type hints for the spreadsheet writer use type aliases that require other imports to introspect apparently. That is `type_hints = typing.get_type_hints(cls)` was failing on that class. Adds test for this. * Adds missing deps to polars materializers example
- Loading branch information
Showing
3 changed files
with
29 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
polars | ||
sf-hamilton | ||
xlsx2csv # for excel data loader | ||
xlsxwriter # Excel export requires 'xlsxwriter' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters