Skip to content

Commit

Permalink
address pyright errors
Browse files Browse the repository at this point in the history
  • Loading branch information
areleu committed Sep 5, 2024
1 parent 8eca3ee commit 73b16a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frictionless/formats/polars/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def write_row_stream(self, source: TableResource):
for field in source.schema.fields:
value = row[field.name]
if isinstance(value, dict):
value = str(value)
value = str(value) # type: ignore
if isinstance(value, decimal.Decimal):
value = float(value)
if isinstance(value, datetime.datetime) and value.tzinfo:
Expand Down

0 comments on commit 73b16a6

Please sign in to comment.