Skip to content

Commit

Permalink
Fix pep8 compliancy
Browse files Browse the repository at this point in the history
  • Loading branch information
kvesteri committed Jun 18, 2015
1 parent c03a1c2 commit 62da10c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion sqlalchemy_utils/i18n.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import six
import sqlalchemy as sa
from sqlalchemy.ext.compiler import compiles
from sqlalchemy.sql.expression import ColumnElement
from sqlalchemy.ext.hybrid import hybrid_property
from sqlalchemy.sql.expression import ColumnElement

from .exceptions import ImproperlyConfigured

Expand Down
1 change: 1 addition & 0 deletions tests/test_translation_hybrid.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ def current_locale(self):
LocaleGetter().current_locale,
'fi'
)

class Article(self.Base):
__tablename__ = 'article'
id = sa.Column(sa.Integer, primary_key=True)
Expand Down

0 comments on commit 62da10c

Please sign in to comment.