Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Commit

Permalink
fix: Unused "type: ignore" comment
Browse files Browse the repository at this point in the history
  • Loading branch information
engnadeau committed Aug 23, 2022
1 parent a4704e4 commit 1f0cc03
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pybotics/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from enum import Enum
from typing import Sequence, Union

import numpy as np # type: ignore
import numpy as np
import numpy.typing as npt

from pybotics.errors import PyboticsError
Expand Down
2 changes: 1 addition & 1 deletion pybotics/json_encoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import json
from typing import Any

import numpy as np # type: ignore
import numpy as np


class JSONEncoder(json.JSONEncoder):
Expand Down
2 changes: 1 addition & 1 deletion pybotics/kinematic_chain.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from typing import Any, Optional, Sequence, Sized, Union

import attr
import numpy as np # type: ignore
import numpy as np
import numpy.typing as npt

from pybotics.errors import PyboticsError
Expand Down
2 changes: 1 addition & 1 deletion pybotics/link.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from typing import Sequence, Union

import attr
import numpy as np # type: ignore
import numpy as np
import numpy.typing as npt

from pybotics.json_encoder import JSONEncoder
Expand Down
2 changes: 1 addition & 1 deletion pybotics/optimization.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from typing import Sequence, Union, MutableSequence

import attr
import numpy as np # type: ignore
import numpy as np
import numpy.typing as npt

from pybotics.robot import Robot
Expand Down
2 changes: 1 addition & 1 deletion pybotics/predefined_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
These models correspond to the Modified Denavit–Hartenberg parameters:
https://en.wikipedia.org/wiki/Denavit%E2%80%93Hartenberg_parameters
"""
import numpy as np # type: ignore
import numpy as np
import numpy.typing as npt


Expand Down
2 changes: 1 addition & 1 deletion pybotics/tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from typing import Sequence, Union

import attr
import numpy as np # type: ignore
import numpy as np
import numpy.typing as npt


Expand Down

0 comments on commit 1f0cc03

Please sign in to comment.