Skip to content

Commit

Permalink
Add ignore until false-positive is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
saimonation committed Jul 26, 2021
1 parent 084bd9b commit fb45b5e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cterasdk/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class Logging:

__instance = None
__instance = None # pylint: disable=unused-private-member

@staticmethod
def get():
Expand Down
6 changes: 3 additions & 3 deletions cterasdk/core/files/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class SrcDstParam(Object):

__instance = None
__instance = None # pylint: disable=unused-private-member

@staticmethod
def instance(src, dest=None):
Expand All @@ -21,7 +21,7 @@ def __init__(self, src, dest=None):

class ActionResourcesParam(Object):

__instance = None
__instance = None # pylint: disable=unused-private-member

@staticmethod
def instance():
Expand All @@ -39,7 +39,7 @@ def add(self, param):

class CreateShareParam(Object):

__instance = None
__instance = None # pylint: disable=unused-private-member

@staticmethod
def instance(path, access, expire_on):
Expand Down
2 changes: 1 addition & 1 deletion cterasdk/lib/platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class Platform:

__instance = None
__instance = None # pylint: disable=unused-private-member

@staticmethod
def instance():
Expand Down
2 changes: 1 addition & 1 deletion cterasdk/lib/registry.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class Registry:

__instance = None
__instance = None # pylint: disable=unused-private-member

@staticmethod
def instance():
Expand Down
2 changes: 1 addition & 1 deletion cterasdk/lib/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class Version:

__instance = None
__instance = None # pylint: disable=unused-private-member

@staticmethod
def instance():
Expand Down

0 comments on commit fb45b5e

Please sign in to comment.