Skip to content

Commit

Permalink
STYLE: fix pylint no-method-argument warning (#49064)
Browse files Browse the repository at this point in the history
Co-authored-by: Marco Edward Gorelli <33491632+MarcoGorelli@users.noreply.github.com>
  • Loading branch information
gulyapulya and MarcoGorelli committed Oct 17, 2022
1 parent b07e31c commit 7ebc3e8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions pandas/tests/io/test_gcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ def gcs_buffer(monkeypatch):
gcs_buffer.close = lambda: True

class MockGCSFileSystem(AbstractFileSystem):
@staticmethod
def open(*args, **kwargs):
gcs_buffer.seek(0)
return gcs_buffer
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ disable = [
"invalid-repr-returned",
"invalid-unary-operand-type",
"no-member",
"no-method-argument",
"no-name-in-module",
"no-value-for-parameter",
"not-an-iterable",
Expand Down

0 comments on commit 7ebc3e8

Please sign in to comment.