Skip to content

Commit

Permalink
Merge pull request #138 from adamrp/issue-133
Browse files Browse the repository at this point in the history
Rearrange order of imports for PEP8 compliance
  • Loading branch information
antgonza committed Jun 20, 2014
2 parents 4c95cbd + 0019fff commit d9fefdf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions qiita_db/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
# The full license is in the file LICENSE, distributed with this software.
# -----------------------------------------------------------------------------

from dateutil.parser import parse
import pandas as pd
from functools import partial
try:
# Python 2
Expand All @@ -16,6 +14,9 @@
# Python 3
from configparser import ConfigParser

import pandas as pd
from dateutil.parser import parse

from .study import Study, StudyPerson
from .user import User
from .util import get_filetypes, get_filepath_types
Expand Down

0 comments on commit d9fefdf

Please sign in to comment.