Skip to content

Commit d937f26

Browse files
committed
fix: types
1 parent af5c010 commit d937f26

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

awswrangler/_distributed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from enum import Enum, unique
1010
from functools import wraps
1111
from importlib import reload
12-
from typing import Any, Callable, Literal, TypeVar, cast
12+
from typing import Any, Callable, Literal, TypeVar
1313

1414
EngineLiteral = Literal["python", "ray"]
1515
MemoryFormatLiteral = Literal["pandas", "modin"]

awswrangler/athena/_write_iceberg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import re
77
import typing
88
import uuid
9-
from typing import Any, Dict, Literal, TypedDict, cast
9+
from typing import Any, Dict, Literal, TypedDict
1010

1111
import boto3
1212
import pandas as pd

awswrangler/s3/_write_orc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import logging
66
import math
77
from contextlib import contextmanager
8-
from typing import TYPE_CHECKING, Any, Callable, Iterator, Literal, cast
8+
from typing import TYPE_CHECKING, Any, Callable, Iterator, Literal
99

1010
import boto3
1111
import pandas as pd

awswrangler/s3/_write_parquet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import logging
66
import math
77
from contextlib import contextmanager
8-
from typing import TYPE_CHECKING, Any, Callable, Iterator, Literal, cast
8+
from typing import TYPE_CHECKING, Any, Callable, Iterator, Literal
99

1010
import boto3
1111
import pandas as pd

awswrangler/s3/_write_text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import csv
66
import logging
77
import uuid
8-
from typing import TYPE_CHECKING, Any, Literal, cast
8+
from typing import TYPE_CHECKING, Any, Literal
99

1010
import boto3
1111
import pandas as pd

0 commit comments

Comments
 (0)