Skip to content

Commit c1d7a57

Browse files
committed
fix line too long
1 parent 5e2f18b commit c1d7a57

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/io/common.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -910,7 +910,8 @@ def get_handle(
910910
or not hasattr(handle, "seekable")
911911
):
912912
handle = _IOWrapper(handle)
913-
# error: Value of type variable "_BufferT_co" of "TextIOWrapper" cannot be "_IOWrapper | BaseBuffer" [type-var]
913+
# error: Value of type variable "_BufferT_co" of
914+
# "TextIOWrapper" cannot be "_IOWrapper | BaseBuffer" [type-var]
914915
handle = TextIOWrapper(
915916
handle,
916917
encoding=ioargs.encoding,

0 commit comments

Comments
 (0)