Browse Source

[FIX] E402 module level import not at top of file

12.0-mig-module_prototyper_last
Maxime Chambreuil 9 years ago
committed by Nicolas JEUDY
parent
commit
f49f084714
  1. 3
      module_prototyper/models/module_prototyper.py

3
module_prototyper/models/module_prototyper.py

@ -23,12 +23,13 @@ import os
import re import re
import base64 import base64
from datetime import date from datetime import date
YEAR = date.today().year
from collections import namedtuple from collections import namedtuple
from jinja2 import Environment, FileSystemLoader from jinja2 import Environment, FileSystemLoader
from openerp import models, api, fields from openerp import models, api, fields
YEAR = date.today().year
class ModulePrototyper(models.Model): class ModulePrototyper(models.Model):
"""Module Prototyper gathers different information from all over the """Module Prototyper gathers different information from all over the

Loading…
Cancel
Save