Skip to content

Commit

Permalink
reorder import of justopinion
Browse files Browse the repository at this point in the history
  • Loading branch information
mscarey committed Aug 10, 2021
1 parent 876c968 commit d61de9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion authorityspoke/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
"""AuthoritySpoke: Reading the law for the last time."""

from justopinion.decisions import Decision
from legislice import Enactment
from legislice.download import Client as LegisClient
from nettlesome.entities import Entity
from nettlesome.predicates import Predicate
from nettlesome.quantities import Comparison

from .decisions import Decision, DecisionReading
from .decisions import DecisionReading
from .facts import Fact
from .holdings import Holding
from .opinions import Opinion, OpinionReading
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from authorityspoke.decisions import DecisionReading
from copy import deepcopy
import datetime
import json
Expand All @@ -18,6 +17,7 @@
from nettlesome.quantities import Comparison, Q_
import pytest

from authorityspoke.decisions import DecisionReading
from authorityspoke.evidence import Evidence, Exhibit
from authorityspoke.facts import Fact, build_fact
from authorityspoke.holdings import Holding
Expand Down

0 comments on commit d61de9a

Please sign in to comment.