Skip to content

Commit

Permalink
Fix bad reuse of 'fit_decorators' identifier
Browse files Browse the repository at this point in the history
Very bad idea to have two completely different functions use the same
decorator name.
  • Loading branch information
dnouri committed May 18, 2018
1 parent af9aaa8 commit 9efb961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion palladium/server.py
Expand Up @@ -385,7 +385,7 @@ def list(model_persister):
return make_ujson_response(info)


@PluggableDecorator('fit_decorators')
@PluggableDecorator('server_fit_decorators')
@args_from_config
def fit():
param_converters = {
Expand Down

0 comments on commit 9efb961

Please sign in to comment.