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
Currently, all of the above methods are not typically defined to be static. This can lead users to think that they can just use self.channel_params to obtain the parameters in def update_states().
To avoid this misuse, we could just mark all of these methods as static (at least in the tutorials) and thereby allow them to not have any global state.
The text was updated successfully, but these errors were encountered:
Currently, all of the above methods are not typically defined to be static. This can lead users to think that they can just use
self.channel_params
to obtain the parameters indef update_states()
.To avoid this misuse, we could just mark all of these methods as static (at least in the tutorials) and thereby allow them to not have any global state.
The text was updated successfully, but these errors were encountered: