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
First time I am trying to use pythoncall support for defining python classes. Apparently all input arguments as well as self attributes get wrapped in Py.
This is also truth for boolean comparisons like == or != Which return Py objects.
This is difficult as we cannot simply use standard comparisons in if else && or ||, but instead need to wrap everything in Bool(...) In order to get a Julia boolean
What is the purpose of this extra complication? Wouldn't it be much easier if such boolean operators return Julia Bool values?