Skip to content

Commit

Permalink
[FIX] E402 module level import not at top of file
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime Chambreuil committed Oct 9, 2015
1 parent 1d5041d commit 616b7b7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion module_prototyper/models/module_prototyper.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@
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
Expand Down

0 comments on commit 616b7b7

Please sign in to comment.