Browse Source

fix lint errors2

Nick Sweeting 4 years ago
parent
commit
265bcc0264
2 changed files with 1 additions and 2 deletions
  1. 1 1
      archivebox/core/settings.py
  2. 0 1
      archivebox/index/schema.py

+ 1 - 1
archivebox/core/settings.py

@@ -71,7 +71,7 @@ AUTHENTICATION_BACKENDS = [
 DEBUG_TOOLBAR = False
 DEBUG_TOOLBAR = False
 if DEBUG:
 if DEBUG:
     try:
     try:
-        import debug_toolbar
+        import debug_toolbar   # noqa
         DEBUG_TOOLBAR = True
         DEBUG_TOOLBAR = True
     except ImportError:
     except ImportError:
         pass
         pass

+ 0 - 1
archivebox/index/schema.py

@@ -178,7 +178,6 @@ class Link:
             raise
             raise
     
     
     def _asdict(self, extended=False):
     def _asdict(self, extended=False):
-        from core.models import Snapshot
         info = {
         info = {
             'schema': 'Link',
             'schema': 'Link',
             'url': self.url,
             'url': self.url,