File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ def run(self):
3636
3737 interact ('(Hit CTRL-D to exit...)' , local = self .LOCALS )
3838
39- def wait (self ): # pylint: disable=no-self-use
39+ @staticmethod
40+ def wait ():
4041 raw_input ()
4142
4243 @classmethod
Original file line number Diff line number Diff line change 55
66class TestConnection (unittest2 .TestCase ): # pylint: disable=R0904
77
8- def _getTargetClass (self ): # pylint: disable=invalid-name,no-self-use
8+ @staticmethod
9+ def _getTargetClass (): # pylint: disable=invalid-name
910 from gcloud .connection import Connection
1011 return Connection
1112
Original file line number Diff line number Diff line change 55
66class TestCredentials (unittest2 .TestCase ): # pylint: disable=R0904
77
8- def _getTargetClass (self ): # pylint: disable=invalid-name,no-self-use
8+ @staticmethod
9+ def _getTargetClass (): # pylint: disable=invalid-name
910 from gcloud .credentials import Credentials
1011 return Credentials
1112
You can’t perform that action at this time.
0 commit comments