Fix pycodestyle complaints

This commit is contained in:
Daniel Quinn 2018-09-09 20:55:37 +01:00
parent 2dc35cc856
commit ef302abed7
3 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@ class TextDocumentParser(DocumentParser):
def create_bg():
work_size = ",".join([str(n - 1) for n in psize])
r = str(round(psize[0] / 10));
r = str(round(psize[0] / 10))
rounded = ",".join([r, r])
run_command(self.CONVERT, "-size ", picsize, ' xc:none -draw ',
'"fill ', bg_color, ' roundrectangle 0,0,',

View File

@ -5,7 +5,7 @@ from .parsers import TextDocumentParser
class ConsumerDeclaration:
MATCHING_FILES = re.compile("^.*\.(te?xt|md|csv)$")
MATCHING_FILES = re.compile(r"^.*\.(te?xt|md|csv)$")
@classmethod
def handle(cls, sender, **kwargs):