Skip to content

Commit

Permalink
Pylint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lechevaa committed Oct 1, 2024
1 parent d2461c2 commit e9bcb42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 1 addition & 2 deletions src/pyopmnearwell/ml/scaler_layers.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
linting completely. It is possible that the module is not functional at the moment.
"""

# pylint: skip-file

from __future__ import annotations

from typing import Optional, Sequence, Union
Expand All @@ -15,6 +13,7 @@
import tensorflow as tf
from numpy.typing import ArrayLike

# pylint: skip-file

class ScalerLayer(keras.layers.Layer):
"""MixIn to provide functionality for the Scaler Layer."""
Expand Down
2 changes: 2 additions & 0 deletions tests/test_scaler_layers.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

from pyopmnearwell.ml.scaler_layers import MinMaxScalerLayer, MinMaxUnScalerLayer

# pylint: skip-file

rng: np.random.Generator = np.random.default_rng()

layers: list[str] = ["scaler", "unscaler"]
Expand Down

0 comments on commit e9bcb42

Please sign in to comment.