1
0
Fork 0

Future imports must come first

This commit is contained in:
Simran Brucherseifer 2019-11-19 17:47:58 +01:00
parent ec0dcea2a3
commit 6bddbe4bbc
1 changed files with 1 additions and 1 deletions

View File

@ -1,9 +1,9 @@
from __future__ import unicode_literals
import os
import sys
import re
import inspect
import io
from __future__ import unicode_literals
try:
from urllib.parse import quote_plus
except ImportError: