Commit efd5e209 authored by Michal Čihař's avatar Michal Čihař

Wrap too long lines

parent a8663a61
...@@ -818,10 +818,12 @@ class Unit(models.Model): ...@@ -818,10 +818,12 @@ class Unit(models.Model):
for check in checks_to_run: for check in checks_to_run:
check_obj = CHECKS[check] check_obj = CHECKS[check]
# Target check # Target check
if check_obj.target and check_obj.check(src, tgt, self.flags, self.translation.language, self): if check_obj.target and check_obj.check(
src, tgt, self.flags, self.translation.language, self):
failing_target.append(check) failing_target.append(check)
# Source check # Source check
if check_obj.source and check_obj.check_source(src, self.flags, self): if check_obj.source and check_obj.check_source(
src, self.flags, self):
failing_source.append(check) failing_source.append(check)
# Compare to existing checks, delete non failing ones # Compare to existing checks, delete non failing ones
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment