Skip to content

Commit 05c28d0

Browse files
committed
Fix linting
1 parent 9844860 commit 05c28d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_greedy_selector.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ def test_score_threshold_and_full(self):
5151

5252
def test_bad_score_threshold_type(self):
5353
with self.assertRaises(ValueError) as cm:
54-
_ = GreedyTester(score_threshold_type = "bad").fit(self.X)
54+
_ = GreedyTester(score_threshold_type="bad").fit(self.X)
5555
self.assertEqual(
5656
str(cm.exception),
57-
"invalid score_threshold_type, expected one of 'relative' or 'absolute'"
57+
"invalid score_threshold_type, expected one of 'relative' or 'absolute'",
5858
)
5959

6060
def test_bad_warm_start(self):

0 commit comments

Comments
 (0)