forked from orbit-oss/flask
Removed unused package_name attribute
This commit is contained in:
parent
5c52fe980e
commit
2f181e1949
1 changed files with 1 additions and 2 deletions
3
flask.py
3
flask.py
|
|
@ -305,9 +305,8 @@ class _ModuleSetupState(object):
|
||||||
class Module(object):
|
class Module(object):
|
||||||
"""Container object that enables pluggable applications"""
|
"""Container object that enables pluggable applications"""
|
||||||
|
|
||||||
def __init__(self, name, url_prefix=None, package_name=None):
|
def __init__(self, name, url_prefix=None):
|
||||||
self.name = name
|
self.name = name
|
||||||
self.package_name = package_name
|
|
||||||
self.url_prefix = url_prefix
|
self.url_prefix = url_prefix
|
||||||
self._register_events = []
|
self._register_events = []
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue