Skip to content

Commit

Permalink
fix: pylint complaints in neural_circuit
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioseel committed Oct 16, 2024
1 parent 4f370a7 commit 923b85a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions retinal_rl/models/neural_circuit.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from typing import Any, List, Type, get_type_hints

import torch
import torch.nn as nn
from torch import nn
from torchinfo import summary

from retinal_rl.util import Activation
Expand Down Expand Up @@ -64,7 +64,6 @@ def scan(self) -> None:
@abstractmethod
def forward(self, x: torch.Tensor) -> torch.Tensor:
"""Forward pass of the neural circuit."""
x = x
raise NotImplementedError("Each subclass must implement its own forward method.")

@property
Expand Down

0 comments on commit 923b85a

Please sign in to comment.