Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign upPinned
465 contributions in the last year
Contribution activity
November 2020
October 2020
Created 2 commits in 1 repository
Created 1 repository
- nt591/Fixit Python
Created a pull request in Instagram/Fixit that received 3 comments
Add UseAssertIsNotNoneRule
Summary
Adds a lint rule to check for the pattern self.assertTrue(x is not None) and corrects to self.assertIsNotNone(x)
Test Plan
tox -e py38
----…