Python 3.5 fixes.

pull/8407/head
Patrick Cloke 2020-10-06 07:15:26 -04:00
parent d3d707f3e2
commit c395fef90c
1 changed files with 2 additions and 11 deletions

View File

@ -15,17 +15,7 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import logging import logging
from typing import ( from typing import TYPE_CHECKING, Any, Dict, Iterable, List, Optional, Set, Tuple
TYPE_CHECKING,
Any,
Collection,
Dict,
Iterable,
List,
Optional,
Set,
Tuple,
)
from synapse.api import errors from synapse.api import errors
from synapse.api.constants import EventTypes from synapse.api.constants import EventTypes
@ -39,6 +29,7 @@ from synapse.api.errors import (
from synapse.logging.opentracing import log_kv, set_tag, trace from synapse.logging.opentracing import log_kv, set_tag, trace
from synapse.metrics.background_process_metrics import run_as_background_process from synapse.metrics.background_process_metrics import run_as_background_process
from synapse.types import ( from synapse.types import (
Collection,
JsonDict, JsonDict,
StreamToken, StreamToken,
UserID, UserID,