backup: nits assert without parentheses

This commit is contained in:
Michael Schmoock
2022-12-27 16:25:48 +01:00
committed by Christian Decker
parent 70c1f0a4ee
commit 6ab4d35003
7 changed files with 44 additions and 47 deletions

View File

@@ -44,7 +44,7 @@ def setup_server_logging(mode, level):
root_logger.handlers = []
root_logger.addHandler(SystemdHandler())
else:
assert(mode == 'plain')
assert mode == 'plain'
class SocketServer: