Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit 7eedb98

Browse files
committed
Adjust imports
1 parent 5da7503 commit 7eedb98

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

src/calc/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,6 @@
1313
"get_squares",
1414
]
1515

16-
from calc.func import *
16+
from calc.func import (get_factorial, get_fibonacci_number,
17+
get_fibonacci_number_nr, get_square, get_squares,
18+
get_sum_of_strings)

src/primes/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
"""
2626

2727
__all__ = [
28-
"is_prime",
29-
"get_primes",
3028
"eratosthenes_sieve",
29+
"get_primes",
30+
"is_prime",
3131
]
3232

33-
from primes.func import *
33+
from primes.func import eratosthenes_sieve, get_primes, is_prime

src/sequences/__init__.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,9 @@
4040
"get_longest_uniq_length",
4141
]
4242

43-
from sequences.func import *
43+
from sequences.func import (
44+
are_parentheses_balanced,
45+
get_longest_palindrome,
46+
get_longest_uniq_length,
47+
is_palindrome, is_vowel
48+
)

0 commit comments

Comments
 (0)