dshikashio / Pybag

Python module for Windbg's dbgeng plus additional wrappers.
MIT License
56 stars 15 forks source link

Add missing `not` to `isinstance()` check #13

Closed bravochar closed 3 years ago

bravochar commented 3 years ago

This check is missing the not to have the intended effect. As written, calling with a bytes() instance as the data argument will raise a TypeError, while calling with any other type will erroneously pass this check.