Skip to content
Snippets Groups Projects
Commit 3acc423df795 authored by Houzefa Abbasbhay's avatar Houzefa Abbasbhay :slight_smile:
Browse files

Code formatting (flake8 valid)

parent 307cbb3fc76e
No related branches found
No related tags found
No related merge requests found
...@@ -101,7 +101,7 @@ ...@@ -101,7 +101,7 @@
res = {tag: [] for tag in tags} res = {tag: [] for tag in tags}
with open(filename, 'r') as f: with open(filename, 'r') as f:
for line_num, line in enumerate(f): for line_num, line in enumerate(f):
for tag in tags: for tag in tags:
if tag in line: if tag in line:
res[tag].append((filename, line_num, line[:-1].strip())) res[tag].append((filename, line_num, line[:-1].strip()))
return res return res
......
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# flake8: noqa
# #
# SAML2 authentication build configuration file, created by # SAML2 authentication build configuration file, created by
# sphinx-quickstart on Mon Jun 13 17:24:26 2016. # sphinx-quickstart on Mon Jun 13 17:24:26 2016.
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
from .util.odoo_tests import TestBase from .util.odoo_tests import TestBase
from .util.singleton import Singleton from .util.singleton import Singleton
from .util.uuidgen import genUuid
class TestMemory(object): class TestMemory(object):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment