Browse Source

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

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

3
module_prototyper/models/module_prototyper.py

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

Loading…
Cancel
Save