From 4c2a9d256623360b34a37dbde19531919af41c21 Mon Sep 17 00:00:00 2001 From: Yves Fischer Date: Mon, 23 Nov 2015 23:14:17 +0100 Subject: replace all " with ' --- watchnews/css.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'watchnews/css.py') diff --git a/watchnews/css.py b/watchnews/css.py index b32a274..825cd5e 100644 --- a/watchnews/css.py +++ b/watchnews/css.py @@ -10,20 +10,20 @@ class Rule: def _f(self, prop): key, value = prop - key = re.sub("([A-Z])", "-\\1", key).lower() - return " {}: {};".format(key, value) + key = re.sub('([A-Z])', '-\\1', key).lower() + return ' {}: {};'.format(key, value) def __format__(self): - result = " ".join(self.path) - result += " {\n" - result += "\n".join(map(self._f, self.properties.items())) - result += "\n}\n" + result = ' '.join(self.path) + result += ' {\n' + result += '\n'.join(map(self._f, self.properties.items())) + result += '\n}\n' return result def string(*rules): - return "\n".join(map(lambda r: r.__format__(), rules)) + return '\n'.join(map(lambda r: r.__format__(), rules)) -if __name__ == "__main__": - print("CSS Demo") - print(Rule(".foo", "#blah", backgroundColor="red").__format__()) +if __name__ == '__main__': + print('CSS Demo') + print(Rule('.foo', '#blah', backgroundColor='red').__format__()) -- cgit v1.2.1