mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 02:00:20 +00:00
Fix linter
This commit is contained in:
parent
afb794a7e4
commit
3884ef9652
1 changed files with 3 additions and 3 deletions
|
@ -46,13 +46,13 @@ class MockFileclient:
|
|||
self.list_states = lambda *x, **y: list_states
|
||||
|
||||
# pylint: disable=unused-argument,no-method-argument,method-hidden
|
||||
def cache_file(*args, **kwargs):
|
||||
def cache_file(self, *args, **kwargs):
|
||||
raise NotImplementedError()
|
||||
|
||||
def get_state(*args, **kwargs):
|
||||
def get_state(self, *args, **kwargs):
|
||||
raise NotImplementedError()
|
||||
|
||||
def list_states(*args, **kwargs):
|
||||
def list_states(self, *args, **kwargs):
|
||||
raise NotImplementedError()
|
||||
|
||||
# pylint: enable=unused-argument,no-method-argument,method-hidden
|
||||
|
|
Loading…
Add table
Reference in a new issue