You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The marathon.MarathonApp object can be built by passing all the parameters defining an application.
It would be nice if there was a way to create marathon.MarathonApp with json content directly.
A workaround, given a json object, would be to use marathon.MarathonApp(**myapp_json), but there would still be issues for method parameters using snake-case and json keys using camelCase:
E.g.,
TypeError: __init__() got an unexpected keyword argument 'upgradeStrategy'
The text was updated successfully, but these errors were encountered:
The
marathon.MarathonApp
object can be built by passing all the parameters defining an application.It would be nice if there was a way to create
marathon.MarathonApp
with json content directly.A workaround, given a json object, would be to use
marathon.MarathonApp(**myapp_json)
, but there would still be issues for method parameters using snake-case and json keys using camelCase:E.g.,
The text was updated successfully, but these errors were encountered: