Skip to content

Commit 996d013

Browse files
committed
Fix: linting error #2
1 parent 5e5055d commit 996d013

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

causal_testing/surrogate/surrogate_search_algorithms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""Module containing implementation of search algorithm for surrogate search """
22
# pylint: disable=cell-var-from-loop
33
# pylint: disable=too-many-locals
4-
# pylint: disable=R0903
54
# Fitness functions are required to be iteratively defined, including all variables within.
65

76
from operator import itemgetter
@@ -15,6 +14,7 @@
1514
class GeneticSearchAlgorithm(SearchAlgorithm):
1615
"""Implementation of SearchAlgorithm class. Implements genetic search algorithm for surrogate models."""
1716

17+
# pylint: disable=too-few-public-methods
1818
def __init__(self, delta=0.05, config: dict = None) -> None:
1919
super().__init__()
2020

0 commit comments

Comments
 (0)