removed unnecessary reference to self.app

This commit is contained in:
Edward Robinson
2012-10-31 23:10:45 +00:00
parent 6914a36785
commit 8a39c07427
+1 -3
View File
@@ -171,10 +171,8 @@ class FlaskS3(object):
:type app: :class:`flask.Flask` or None
"""
def __init__(self, app=None):
self.app = None
if app is not None:
self.app = app
self.init_app(self.app)
self.init_app(app)
def init_app(self, app):
"""