Skip to content

Commit

Permalink
Remove unneeded imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
jzohrab committed Apr 5, 2016
1 parent c750a38 commit a7f0493
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 27 deletions.
3 changes: 0 additions & 3 deletions dbMigrator/migrator.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
import logging
import sys
import psycopg2
import psycopg2.extensions
import re
from abc import ABCMeta, abstractmethod


Expand Down
2 changes: 0 additions & 2 deletions examples/mysql/mysql.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import sys
import os
import inspect
import ConfigParser
import argparse

sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..'))
import dbMigrator
Expand Down
2 changes: 0 additions & 2 deletions examples/mysql/test_mysql.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import unittest
import sys
import os

from .mysql import MySqlExample

Expand Down
2 changes: 0 additions & 2 deletions examples/postgres/postgres.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import sys
import os
import inspect
import ConfigParser
import argparse

sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..'))
import dbMigrator
Expand Down
2 changes: 0 additions & 2 deletions examples/postgres/test_postgres.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import unittest
import sys
import os

from .postgres import PostgresExample

Expand Down
6 changes: 0 additions & 6 deletions test/fakedatabasehandler.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
import unittest
import sys
import os
import re
import inspect
import ConfigParser

import dbMigrator
from dbMigrator.migrator import DatabaseHandler

Expand Down
4 changes: 0 additions & 4 deletions test/test_driver.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
import unittest
import sys
import os
import re
import inspect

import dbMigrator
from dbMigrator.driver import Driver
Expand Down
4 changes: 0 additions & 4 deletions test/test_migrator.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
import unittest
import sys
import os
import re
import inspect

import dbMigrator
from dbMigrator.migrator import Migrator
Expand Down
1 change: 0 additions & 1 deletion test/test_mysqldatabasehandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import unittest
import sys
import os
import re
import inspect
from configobj import ConfigObj
from warnings import filterwarnings
Expand Down
1 change: 0 additions & 1 deletion test/test_postgresdatabasehandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import unittest
import sys
import os
import re
import inspect
from configobj import ConfigObj
import psycopg2
Expand Down

0 comments on commit a7f0493

Please sign in to comment.