From c1d7a57454101101383ce7031ebca6b2a2a5ba02 Mon Sep 17 00:00:00 2001 From: Larry Date: Sat, 9 Nov 2024 16:41:07 +0000 Subject: [PATCH] fix line too long --- pandas/io/common.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandas/io/common.py b/pandas/io/common.py index c91e698accd7c..ceac59c850e94 100644 --- a/pandas/io/common.py +++ b/pandas/io/common.py @@ -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,