Don't use __code__

__code__ is a special method name used by python already
source:
https://docs.python.org/3/reference/datamodel.html#special-method-names
This commit is contained in:
Matthias
2020-09-26 16:33:48 +02:00
parent b38f68b3b0
commit 350fcc071e
3 changed files with 4 additions and 4 deletions

View File

@@ -608,7 +608,7 @@ class ApiServer(RPC):
return self.rest_dump({
'strategy': strategy_obj.get_strategy_name(),
'code': strategy_obj.__code__,
'code': strategy_obj.__source__,
})
@require_login