From 246ad5367d9dc507ee3b63a01c5a52ac401fb8e7 Mon Sep 17 00:00:00 2001 From: Tristan Gosselin-Hane Date: Sun, 14 Oct 2018 15:25:45 -0400 Subject: [PATCH] Fix linting problem due to unused import --- webhook-bridge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webhook-bridge.py b/webhook-bridge.py index 70a9cf2..ba1881a 100755 --- a/webhook-bridge.py +++ b/webhook-bridge.py @@ -46,7 +46,7 @@ def run_auth_server(port): # We need to import twisted after setting up the logger because twisted hijacks our logging # TODO: Fix this in a cleaner way from twisted.internet import reactor - from auth_server import AuthFactory, AuthProtocol + from auth_server import AuthFactory # Create factory factory = AuthFactory()