QuackatronHQ / Gigarepo

Statement not reachable on execution PYL-W0101
Anti-pattern
Critical
1 occurrence in this check
Unreachable code
 4def side_height(length, breadth):
 5    value = sqrt(length**2 + breadth**2)
 6    return value
 7    print("The side height is", value) 8
 9
10def all_primes(nums):