Skip to content

Commit

Permalink
Merge pull request pandas-dev#14 from shengjie2013/typeignore-common
Browse files Browse the repository at this point in the history
fix line too long
  • Loading branch information
dl-lim authored Nov 9, 2024
2 parents 12aa2c8 + c1d7a57 commit 034d392
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pandas/io/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,8 @@ def get_handle(
or not hasattr(handle, "seekable")
):
handle = _IOWrapper(handle)
# error: Value of type variable "_BufferT_co" of "TextIOWrapper" cannot be "_IOWrapper | BaseBuffer" [type-var]
# error: Value of type variable "_BufferT_co" of
# "TextIOWrapper" cannot be "_IOWrapper | BaseBuffer" [type-var]
handle = TextIOWrapper(
handle,
encoding=ioargs.encoding,
Expand Down

0 comments on commit 034d392

Please sign in to comment.