mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Add a missing import, remove some unused ones
This commit is contained in:
parent
f764a90439
commit
41a168a0e2
3 changed files with 1 additions and 2 deletions
|
@ -4,7 +4,6 @@ import fnmatch
|
||||||
import os.path
|
import os.path
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from sqlalchemy.orm.attributes import instrumentation_registry
|
|
||||||
import sqlalchemy.sql.util
|
import sqlalchemy.sql.util
|
||||||
import sqlalchemy.types
|
import sqlalchemy.types
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,6 @@ from __future__ import absolute_import
|
||||||
import re
|
import re
|
||||||
|
|
||||||
import markdown
|
import markdown
|
||||||
import sqlalchemy.types
|
|
||||||
from sqlalchemy.orm.session import object_session
|
from sqlalchemy.orm.session import object_session
|
||||||
|
|
||||||
class MarkdownString(object):
|
class MarkdownString(object):
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
# Encoding: UTF-8
|
# Encoding: UTF-8
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
from sqlalchemy.orm.exc import NoResultFound
|
||||||
|
|
||||||
from pokedex.tests import positional_params
|
from pokedex.tests import positional_params
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue