Skip to content

Commit

Permalink
fix: removed unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
engnadeau committed Aug 24, 2022
1 parent 066a1ba commit 432e3a3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pybotics/geometry.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Geometry functions and utilities."""
from enum import Enum
from typing import Sequence, Union
from typing import Union

import numpy as np
import numpy.typing as npt
Expand Down
2 changes: 1 addition & 1 deletion pybotics/robot.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from __future__ import annotations

import typing
from typing import Any, Optional, Sequence, Sized, Union
from typing import Any, Optional, Sized

import attr
import numpy as np
Expand Down
1 change: 0 additions & 1 deletion pybotics/tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
isort:skip_file
"""
from typing import Sequence, Union

import attr
import numpy as np
Expand Down

0 comments on commit 432e3a3

Please sign in to comment.