Skip to content
This repository has been archived by the owner on Feb 7, 2019. It is now read-only.

Fix imports to remove warning per Flask recommendation. #20

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flask_featureflags/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from flask import redirect as _redirect
from flask.signals import Namespace

__version__ = '0.7-dev'
__version__ = '1.0'

log = logging.getLogger(u'flask-featureflags')

Expand Down
6 changes: 3 additions & 3 deletions flask_featureflags/contrib/inline/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from flask import current_app
from flask.ext.featureflags import FEATURE_FLAGS_CONFIG
from flask.ext.featureflags import NoFeatureFlagFound
from flask.ext.featureflags import log
from flask_featureflags import FEATURE_FLAGS_CONFIG
from flask_featureflags import NoFeatureFlagFound
from flask_featureflags import log


class InlineFeatureFlag(object):
Expand Down
2 changes: 1 addition & 1 deletion flask_featureflags/contrib/sqlalchemy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from sqlalchemy import Column, Integer, Boolean, String
from sqlalchemy.orm.exc import NoResultFound
from flask import current_app
from flask.ext.featureflags import NoFeatureFlagFound, log
from flask_featureflags import NoFeatureFlagFound, log


class SQLAlchemyFeatureFlags(object):
Expand Down