-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix linter warnings (order __all__) (#2048)
- Loading branch information
Showing
8 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from stable_baselines3.a2c.a2c import A2C | ||
from stable_baselines3.a2c.policies import CnnPolicy, MlpPolicy, MultiInputPolicy | ||
|
||
__all__ = ["CnnPolicy", "MlpPolicy", "MultiInputPolicy", "A2C"] | ||
__all__ = ["A2C", "CnnPolicy", "MlpPolicy", "MultiInputPolicy"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from stable_baselines3.ddpg.ddpg import DDPG | ||
from stable_baselines3.ddpg.policies import CnnPolicy, MlpPolicy, MultiInputPolicy | ||
|
||
__all__ = ["CnnPolicy", "MlpPolicy", "MultiInputPolicy", "DDPG"] | ||
__all__ = ["DDPG", "CnnPolicy", "MlpPolicy", "MultiInputPolicy"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from stable_baselines3.dqn.dqn import DQN | ||
from stable_baselines3.dqn.policies import CnnPolicy, MlpPolicy, MultiInputPolicy | ||
|
||
__all__ = ["CnnPolicy", "MlpPolicy", "MultiInputPolicy", "DQN"] | ||
__all__ = ["DQN", "CnnPolicy", "MlpPolicy", "MultiInputPolicy"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from stable_baselines3.ppo.policies import CnnPolicy, MlpPolicy, MultiInputPolicy | ||
from stable_baselines3.ppo.ppo import PPO | ||
|
||
__all__ = ["CnnPolicy", "MlpPolicy", "MultiInputPolicy", "PPO"] | ||
__all__ = ["PPO", "CnnPolicy", "MlpPolicy", "MultiInputPolicy"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from stable_baselines3.sac.policies import CnnPolicy, MlpPolicy, MultiInputPolicy | ||
from stable_baselines3.sac.sac import SAC | ||
|
||
__all__ = ["CnnPolicy", "MlpPolicy", "MultiInputPolicy", "SAC"] | ||
__all__ = ["SAC", "CnnPolicy", "MlpPolicy", "MultiInputPolicy"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from stable_baselines3.td3.policies import CnnPolicy, MlpPolicy, MultiInputPolicy | ||
from stable_baselines3.td3.td3 import TD3 | ||
|
||
__all__ = ["CnnPolicy", "MlpPolicy", "MultiInputPolicy", "TD3"] | ||
__all__ = ["TD3", "CnnPolicy", "MlpPolicy", "MultiInputPolicy"] |