Skip to content

Commit

Permalink
Remove unused params parameter from addressfield wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Dec 1, 2017
1 parent f77a47b commit 16036fb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/galaxy/web/form_builder.py
Expand Up @@ -184,12 +184,10 @@ def fields():
("country", "Country", ""),
("phone", "Phone", "")]

def __init__(self, name, user=None, value=None, params=None, security=None, **kwds):
def __init__(self, name, user=None, value=None, security=None, **kwds):
super(AddressField, self).__init__(name, value, **kwds)
self.user = user
self.security = security
self.select_address = None
self.params = params

def to_dict(self):
d = super(AddressField, self).to_dict()
Expand Down

0 comments on commit 16036fb

Please sign in to comment.