Equivalent of PyCharms Code Inspection
Is there a way to enable behavior similar to PyCharms Code Inspection? I ask because in PyCharm a line similar to:test_random_str += ''.join(random.choice(string.ascii_letters) for i in range (10)) results in an 'Unused local'; however, the latest WingIDE does not report such an errorAlso, PyCharm reports several PEP 8 naming convention violations while WingIDE does not.
Thanks
Comments