Mark Mayo

Results 44 issues of Mark Mayo

Some tidyups of pylint warnings/fixes

some tidyups of pylint warnings/errors all tests pass

cleaned imports updated assertregexpmatches to assertregex simplied if checks tidied whitespace

After seeing the issue about ic being slower, I thought I'd add a quick test: def testPerformance(self): from timeit import timeit print(timeit('print("a")', number=1000)) print(timeit('ic("a")', 'from icecream import ic', number=1000)) however,...

- sorted imports - cleaned up imports - added trailing commas as per 3.5, 3.6+ specs - cleaned up spacing around docstrings - cleaned some quotes and whitespace

# Contribution in a nutshell Hey, this could help our community 🌱 # Scope * [ ] I wanted to tidy code * [ ] ... and update for py3...

Remedied a bunch of pylint warnings, deprecated modules, simplification of conditional statements and more.

# Used flake8 to identify some issues # Style and cleanliness change - [X ] Bug fix (non-breaking change which fixes an issue) # Checklist: - [X ] My code...

- replace format strings with f-strings - remove unnecessary f-string prefixes and semi-colons - remove inheritance from (object) as no longer needed in python 3 - remove super(X, self) as...