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
Pyright doesn't recognize check for None case of Optional types with self.assertNotNone() method from our testing framework.
It is possible to fix that by using assert is not None, but pyright should be configured to correctly recognize self.assertIsNotNone() to be consistent with using other self.* verification functions in testbenches
The text was updated successfully, but these errors were encountered:
Pyright doesn't recognize check for
None
case ofOptional
types withself.assertNotNone()
method from our testing framework.It is possible to fix that by using
assert is not None
, but pyright should be configured to correctly recognizeself.assertIsNotNone()
to be consistent with using otherself.*
verification functions in testbenchesThe text was updated successfully, but these errors were encountered: