Browse Source

[FIX] Add noqa even to __init__.py files.

pull/2/head
Ronald Portier (Therp BV) 10 years ago
parent
commit
2ebba0ee05
  1. 2
      account_bank_statement_import/__init__.py
  2. 2
      account_bank_statement_import_ofx/__init__.py
  3. 3
      account_bank_statement_import_ofx/tests/__init__.py
  4. 2
      account_bank_statement_import_qif/__init__.py
  5. 3
      account_bank_statement_import_qif/tests/__init__.py

2
account_bank_statement_import/__init__.py

@ -1,4 +1,6 @@
# -*- encoding: utf-8 -*-
# noqa: This is a backport from Odoo. OCA has no control over style here.
# flake8: noqa
import account_bank_statement_import

2
account_bank_statement_import_ofx/__init__.py

@ -1,4 +1,6 @@
# -*- encoding: utf-8 -*-
# noqa: This is a backport from Odoo. OCA has no control over style here.
# flake8: noqa
import account_bank_statement_import_ofx

3
account_bank_statement_import_ofx/tests/__init__.py

@ -1,3 +1,6 @@
# -*- encoding: utf-8 -*-
# noqa: This is a backport from Odoo. OCA has no control over style here.
# flake8: noqa
from . import test_import_bank_statement
checks = [

2
account_bank_statement_import_qif/__init__.py

@ -1,4 +1,6 @@
# -*- coding: utf-8 -*-
# noqa: This is a backport from Odoo. OCA has no control over style here.
# flake8: noqa
import account_bank_statement_import_qif

3
account_bank_statement_import_qif/tests/__init__.py

@ -1,3 +1,6 @@
# -*- coding: utf-8 -*-
# noqa: This is a backport from Odoo. OCA has no control over style here.
# flake8: noqa
from . import test_import_bank_statement
checks = [
test_import_bank_statement

Loading…
Cancel
Save