Parcourir la source

Code coverage fix.

Taddeus Kroes il y a 13 ans
Parent
commit
e09fb5e901
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/rules/fractions.py

+ 1 - 1
src/rules/fractions.py

@@ -362,7 +362,7 @@ def match_extract_fraction_terms(node):
         elif is_power_combination(n, d):
             handler = extract_fraction_terms
         else:
-            continue
+            continue  # pragma: nocover
 
         p.append(P(node, handler, (n_scope, d_scope, n, d)))