Skip to content

Commit

Permalink
Fixes a circular type hint in axis.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiliJohnson committed Nov 4, 2020
1 parent 66c8b79 commit d7af0fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asitiger/axis.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Type(Enum):
ZOOM = "m"

@classmethod
def get_axes_from_build(cls, build_response: List[str]) -> List[AxisInfo]:
def get_axes_from_build(cls, build_response: List[str]) -> List["AxisInfo"]:
info = cls._make_build_info_dict(build_response)

axes = [
Expand Down

0 comments on commit d7af0fb

Please sign in to comment.