Open nosas opened 3 years ago
Good function call
def _has_gag(self, track: int, level: int) -> bool: return self._count_gag(track=track,level=level) > 0
Bad function call
def _has_gag(self, track: int, level: int) -> bool: return self._count_gag(track, level) > 0
Good function call
Bad function call