This commit is contained in:
meejah 2021-02-12 18:17:09 -07:00
parent ca55509763
commit 7e58767ac1
3 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,6 @@ from zope.interface import (
implementer,
)
from twisted.python import log
from .database import get_db
class ITransitClient(Interface):

View File

@ -8,6 +8,7 @@ from twisted.internet import endpoints
from . import transit_server
from .server_state import create_usage_tracker
from .increase_rlimits import increase_rlimits
from .database import get_db
LONGDESC = """\
This plugin sets up a 'Transit Relay' server for magic-wormhole. This service

View File

@ -1,5 +1,5 @@
from __future__ import print_function, unicode_literals
import os, io, json, sqlite3
import os, io, json
try:
from unittest import mock
except ImportError: