From: Jeremy Stanley Date: Sun, 3 Feb 2019 00:28:23 +0000 (+0000) Subject: Fix comparisons for pyflakes 2.1 X-Git-Tag: 0.0.1~30 X-Git-Url: https://mudpy.org/gitweb?a=commitdiff_plain;h=6d10b4e795679965dfd7f5e4ff027151ff629b8f;hp=6d10b4e795679965dfd7f5e4ff027151ff629b8f;p=mudpy.git Fix comparisons for pyflakes 2.1 The latest release of flake8 updates to pyflakes 2.1, and with that comes an expectation that typical variable equality comparisons should avoid the use of "is" and "is not" for safety. Adjust a couple places we previously ran afoul of the new F632 check. ---