edtechre / pybroker

Algorithmic Trading in Python with Machine Learning
https://www.pybroker.com
Other
2.06k stars 256 forks source link

Fix: replace Mapping whit MutableMapping #113

Closed albertandking closed 7 months ago

albertandking commented 7 months ago

Hi, Ed

  1. Mapping is readonly, if we want to set value, just as ctx.session['count'] = count + 1 it will show waring
  2. we can use MutableMapping to set value
edtechre commented 7 months ago

Thanks for catching!