Skip to content

Commit eaa4360

Browse files
committed
Fix: linting error #3
1 parent 996d013 commit eaa4360

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

causal_testing/surrogate/causal_surrogate_assisted.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# pylint: disable=too-few-public-methods
2+
13
"""Module containing classes to define and run causal surrogate assisted test cases"""
24

35
from abc import ABC, abstractmethod

causal_testing/surrogate/surrogate_search_algorithms.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
class GeneticSearchAlgorithm(SearchAlgorithm):
1515
"""Implementation of SearchAlgorithm class. Implements genetic search algorithm for surrogate models."""
1616

17-
# pylint: disable=too-few-public-methods
1817
def __init__(self, delta=0.05, config: dict = None) -> None:
1918
super().__init__()
2019

0 commit comments

Comments
 (0)