Loco-CTO / Rystal-V6-Experiments

Positional arguments are out of order PYL-W1114
Style
Minor
2 months ago2 months old
Positional arguments appear to be out of order
 33
 34    def lev_dist(self, s1, s2):
 35        if len(s1) < len(s2):
 36            return self.lev_dist(s2, s1) 37
 38        if len(s2) == 0:
 39            return len(s1)