Skip to content

Commit

Permalink
fixed import order
Browse files Browse the repository at this point in the history
  • Loading branch information
TheFrok committed Mar 10, 2020
1 parent 705053d commit 56bae87
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions partridge/readers.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
from collections import defaultdict
import datetime
import os
import shutil
import tempfile
import weakref
from collections import defaultdict
from typing import DefaultDict, Dict, FrozenSet, Optional, Set, Tuple
import weakref

import networkx as nx
from isoweek import Week
import networkx as nx

from .config import default_config, geo_config, empty_config, reroot_graph
from .gtfs import Feed
Expand Down
2 changes: 1 addition & 1 deletion tests/test_feed.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import datetime
import pandas as pd

import pandas as pd
import pytest

import partridge as ptg
Expand Down

0 comments on commit 56bae87

Please sign in to comment.