Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f3ae7ed

Browse files
committedOct 28, 2023
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent ae179fa commit f3ae7ed

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎fuzzy_logic/test_fuzzy_logic.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import unittest
22
from fuzzy_operations import FuzzySet
33

4+
45
class TestFuzzySet(unittest.TestCase):
56
def setUp(self):
67
self.A = FuzzySet("A", 0, 0.5, 1)
@@ -27,5 +28,6 @@ def test_complement(self):
2728
assert complement_a.membership(0.1) == 0.1 # Modify with the expected value
2829
assert complement_a.membership(0.75) == 0.0 # Modify with the expected value
2930

31+
3032
if __name__ == "__main__":
3133
unittest.main()

0 commit comments

Comments
 (0)
Please sign in to comment.