Skip to content

Commit 7ebc3e8

Browse files
STYLE: fix pylint no-method-argument warning (#49064)
Co-authored-by: Marco Edward Gorelli <[email protected]>
1 parent b07e31c commit 7ebc3e8

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

pandas/tests/io/test_gcs.py

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def gcs_buffer(monkeypatch):
3333
gcs_buffer.close = lambda: True
3434

3535
class MockGCSFileSystem(AbstractFileSystem):
36+
@staticmethod
3637
def open(*args, **kwargs):
3738
gcs_buffer.seek(0)
3839
return gcs_buffer

pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ disable = [
6767
"invalid-repr-returned",
6868
"invalid-unary-operand-type",
6969
"no-member",
70-
"no-method-argument",
7170
"no-name-in-module",
7271
"no-value-for-parameter",
7372
"not-an-iterable",

0 commit comments

Comments
 (0)