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
Fix a number of instances where Equality was being checked over
Identity. While no bug currently existed, this pattern was could have
caused an extremely hard to track down bug.
```python
>>> 1 == True # Equality
True
>>> 1 is True # Identity
False
```
Signed-off-by: Jim Fitzpatrick <jfitzpat@redhat.com>
0 commit comments