Commit 8bf43787 authored by Michal Čihař's avatar Michal Čihař

Fix line spacing

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 53d3d4ca
...@@ -138,7 +138,6 @@ class Check(object): ...@@ -138,7 +138,6 @@ class Check(object):
''' '''
return weblate.get_doc_url('user/checks', self.doc_id) return weblate.get_doc_url('user/checks', self.doc_id)
def check_highlight(self, source, unit): def check_highlight(self, source, unit):
''' '''
Returns parts of the text that match to hightlight them Returns parts of the text that match to hightlight them
...@@ -147,6 +146,7 @@ class Check(object): ...@@ -147,6 +146,7 @@ class Check(object):
''' '''
return [] return []
class TargetCheck(Check): class TargetCheck(Check):
''' '''
Basic class for target checks. Basic class for target checks.
......
...@@ -214,6 +214,7 @@ class BaseFormatCheck(TargetCheck): ...@@ -214,6 +214,7 @@ class BaseFormatCheck(TargetCheck):
ret.append((match.start(), match.end(), match.group())) ret.append((match.start(), match.end(), match.group()))
return ret return ret
class PythonFormatCheck(BaseFormatCheck): class PythonFormatCheck(BaseFormatCheck):
''' '''
Check for Python format string Check for Python format string
......
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