QuackatronHQ / Gigarepo

Unused nested function or class detected PTC-W0065
Anti-pattern
Major
a month ago2 years old
is_even is not used inside function all_primes
 8
 9
10def all_primes(nums):
11    def is_even(x):12        return x % 2 == 0
13
14    def is_prime(x):