* pygnulib/GLModuleSystem.py (isNonTests): Avoid not(). Write
'not condition' instead of 'not(condition)'.
+2024-03-16 Collin Funk <collin.funk1@gmail.com>
+
+ gnulib-tool.py: Coding style: Avoid not().
+ * pygnulib/GLModuleSystem.py (isNonTests): Avoid not(). Write
+ 'not condition' instead of 'not(condition)'.
+
2024-03-16 Bruno Haible <bruno@clisp.org>
gnulib-tool.py: Coding style: Avoid bool().
'''GLModule.isTests() -> bool
Check whether module is not a -tests version of module.'''
- result = not(self.isTests())
+ result = not self.isTests()
return result
def getTestsName(self):