use `__future__` imports at the begining of the file

This commit is contained in:
OmarFarrag 2020-01-24 15:06:40 +02:00
parent fc98aa6b67
commit f5d9eb15f8
1 changed files with 2 additions and 2 deletions

View File

@ -2,10 +2,10 @@
This module contains some assorted functions used in tests
"""
import asyncio
import os
from __future__ import absolute_import
from posixpath import split
import asyncio
import os
from importlib import import_module
from twisted.trial.unittest import SkipTest