Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
JochenSiegWork committed Jan 14, 2025
1 parent 3bc87e3 commit dcf95c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion molpipeline/experimental/explainability/explainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from __future__ import annotations

import abc
from typing import Any, TypeAlias, Callable
from typing import Any, Callable, TypeAlias

import numpy as np
import numpy.typing as npt
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,7 @@ def __init__(
Callable[[npt.NDArray[np.float64]], npt.NDArray[np.float64]]
] = function_list
else:
self.function_list: list[
Callable[[npt.NDArray[np.float64]], npt.NDArray[np.float64]]
] = []
self.function_list = []
self.values = np.zeros((self.x_res, self.y_res))

def add_function(
Expand Down

0 comments on commit dcf95c2

Please sign in to comment.