Skip to content

Commit a455701

Browse files
committed
fix linter errors
1 parent a99ce0c commit a455701

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

niaarm/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
from niaarm.niaarm import NiaARM
2+
from niaarm.dataset import Dataset
3+
from niaarm.stats import Stats
4+
5+
6+
__all__ = [NiaARM, Dataset, Stats]
27

38
__version__ = "0.1.0"

niaarm/tests/test_cut_point.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def test_cut_pointB(self):
137137

138138
self.assertEqual(antecedent, [[0.2620357326, 0.4989950842], [0.5636729279999999, 1.13]])
139139
self.assertEqual(consequent, ['NO', 'NO', 'NO', 'NO', [0.34108412769999996, 0.56784007355], ['I'],
140-
[0.13678483190000001, 0.44964727704]])
140+
[0.13678483190000001, 0.44964727704]])
141141

142142
def test_cut_pointC(self):
143143
arm = AssociationRule(self.features)
@@ -235,4 +235,4 @@ def test_cut_pointC(self):
235235

236236
self.assertEqual(antecedent, [[0.2620357326, 0.4989950842], [0.5636729279999999, 1.13], 'NO', 'NO'])
237237
self.assertEqual(consequent, ['NO', 'NO', [0.34108412769999996, 0.56784007355], ['I'],
238-
[0.13678483190000001, 0.44964727704]])
238+
[0.13678483190000001, 0.44964727704]])

0 commit comments

Comments
 (0)