Skip to content

Commit

Permalink
fix: ignore gym + numpy typing
Browse files Browse the repository at this point in the history
  • Loading branch information
kir0ul committed Jul 6, 2022
1 parent 773ab2a commit 4aa8876
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pettingzoo/utils/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import warnings
from typing import Any, Dict, Iterable, Iterator, List, Optional, Tuple, TypeVar

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

ObsType = TypeVar("ObsType")
ActionType = TypeVar("ActionType")
Expand Down

0 comments on commit 4aa8876

Please sign in to comment.