Skip to content

Commit

Permalink
Remove import of util.* from load, and include only the few things it…
Browse files Browse the repository at this point in the history
… needs, remove circular dependency.
  • Loading branch information
isaacovercast committed Jul 22, 2018
1 parent 13d8ed4 commit 30eae03
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ipyrad/load/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,18 @@
import os
import time
import json
import itertools
import pandas as pd
import ipyrad as ip
from copy import deepcopy
from ipyrad.assemble.util import *
from ipyrad.assemble.util import IPyradWarningExit, ObjDict
from collections import OrderedDict

# pylint: disable=W0212
# pylint: disable=W0142

import logging
LOGGER = logging.getLogger(__name__)

def test_assembly(data):
""" Check to see if the assembly you're trying to load is concordant
Expand Down

0 comments on commit 30eae03

Please sign in to comment.