Skip to content

Commit

Permalink
add #noqa to fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoMeter committed Sep 10, 2024
1 parent e9c2f54 commit 2b13995
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cleanrl/ppo_trxl/ppo_trxl.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
from dataclasses import dataclass

import gymnasium as gym
import memory_gym
import memory_gym # noqa
import numpy as np
import torch
import torch.nn as nn
import torch.optim as optim
import tyro
from einops import rearrange
from minigrid.wrappers import ImgObsWrapper, RGBImgPartialObsWrapper
from pom_env import PoMEnv
from pom_env import PoMEnv # noqa
from torch.distributions import Categorical
from torch.utils.tensorboard import SummaryWriter

Expand Down

0 comments on commit 2b13995

Please sign in to comment.