Skip to content

Commit

Permalink
fix isort errors
Browse files Browse the repository at this point in the history
  • Loading branch information
smanolloff committed Sep 29, 2023
1 parent 8ef5e00 commit 159fd8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/imitation/algorithms/adversarial/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import abc
import dataclasses
import logging
from typing import Iterable, Iterator, Mapping, Optional, Type, List, overload
from typing import Iterable, Iterator, List, Mapping, Optional, Type, overload

import numpy as np
import torch as th
Expand All @@ -15,8 +15,8 @@
policies,
vec_env,
)
from stable_baselines3.common.type_aliases import MaybeCallback
from stable_baselines3.common.callbacks import BaseCallback, ConvertCallback
from stable_baselines3.common.type_aliases import MaybeCallback
from stable_baselines3.sac import policies as sac_policies
from torch.nn import functional as F

Expand Down

0 comments on commit 159fd8e

Please sign in to comment.