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 fda47cd commit aeb05be
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion module_prototyper/models/module_prototyper.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@
import os
import re
import textwrap
import base64
from datetime import date

from collections import namedtuple
from datetime import date

from jinja2 import Environment, FileSystemLoader

Expand All @@ -39,6 +40,8 @@

_logger = logging.getLogger(__name__)

YEAR = date.today().year


class ModulePrototyper(models.Model):
"""Module Prototyper gathers different information from all over the
Expand Down

0 comments on commit aeb05be

Please sign in to comment.