We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
If you let stream argument with default value as EventStream() , Python declares the EvenStream instance shared across all this function calls, no matter how much times you call it. To fix it, you must set default value to None and declare the instance into the function.
Default Arguments
You are viewing a single comment's thread. Return to all comments →
If you let
stream
argument with default value asEventStream()
, Python declares the EvenStream instance shared across all this function calls, no matter how much times you call it. To fix it, you must set default value to None and declare the instance into the function.