Skip to content

Commit 9e5d829

Browse files
committed
# pylint: disable=C0116
1 parent 7136c78 commit 9e5d829

File tree

8 files changed

+8
-0
lines changed

8 files changed

+8
-0
lines changed

collatz-conjecture/collatz_conjecture_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
)
1818

1919

20+
# pylint: disable=C0116
2021
class CollatzConjectureTest(unittest.TestCase):
2122
"""Unit tests for the functions related to the Collatz conjecture."""
2223

currency-exchange/exchange_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
exchangeable_value)
2020

2121

22+
# pylint: disable=C0116
2223
class CurrencyExchangeTest(unittest.TestCase):
2324
"""Unit tests for currency exchange utility functions."""
2425

grains/grains_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
)
2020

2121

22+
# pylint: disable=C0116
2223
class GrainsTest(unittest.TestCase):
2324
"""
2425
Unit tests for the GrainsTest class, covering the square and

hello-world/hello_world.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
# pylint: disable=C0116
12
def hello():
23
return 'Hello, World!'

little-sisters-vocab/strings_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
adjective_to_verb)
1616

1717

18+
# pylint: disable=C0116
1819
class LittleSistersVocabTest(unittest.TestCase):
1920
"""
2021
Unit tests for vocabulary string manipulation functions in

making-the-grade/loops_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
perfect_score)
2020

2121

22+
# pylint: disable=C0116
2223
class MakingTheGradeTest(unittest.TestCase):
2324
"""
2425
Test case class for verifying functions in the making-the-grade module.

meltdown-mitigation/conditionals_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
fail_safe)
1414

1515

16+
# pylint: disable=C0116
1617
class MeltdownMitigationTest(unittest.TestCase):
1718
"""Test cases for Meltdown mitigation exercise."""
1819

square-root/square_root_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
)
1717

1818

19+
# pylint: disable=C0116
1920
class SquareRootTest(unittest.TestCase):
2021
"""
2122
Test suite for verifying the functionality of the square_root function.

0 commit comments

Comments
 (0)