diff --git a/Makefile b/Makefile index f7cc0cbf3..7f5c906e7 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,3 @@ default: - pyflakes teeth/ - pep8 --max-line-length=119 teeth/ + pyflakes teeth_agent/ + pep8 --max-line-length=119 teeth_agent/ diff --git a/teeth_agent/agent.py b/teeth_agent/agent.py index 595f0e2e6..af5c6732f 100644 --- a/teeth_agent/agent.py +++ b/teeth_agent/agent.py @@ -14,9 +14,6 @@ See the License for the specific language governing permissions and limitations under the License. """ -import uuid - -import pkg_resources import simplejson as json from twisted.internet.protocol import ReconnectingClientFactory from twisted.internet import reactor @@ -50,7 +47,6 @@ class AgentClientFactory(ReconnectingClientFactory): initialDelay = 1.0 maxDelay = 120 - def buildProtocol(self, addr): self.resetDelay() return self.protocol()