*: fix general Linting errors

This commit is contained in:
Jens Langhammer
2020-08-19 10:49:14 +02:00
parent c7a2410b1d
commit 0394adaf46
3 changed files with 7 additions and 6 deletions

View File

@ -32,7 +32,7 @@ class PolicyResult:
"""Small data-class to hold policy results"""
passing: bool
messages: Tuple[str]
messages: Tuple[str, ...]
def __init__(self, passing: bool, *messages: str):
self.passing = passing