pydoorlock: Doorlock: remove redundant parentheses

Signed-off-by: Ralf Ramsauer <ralf@binary-kitchen.de>
This commit is contained in:
Ralf Ramsauer 2018-10-09 01:03:35 +02:00
parent d6d90e9f70
commit 9e94d858ec
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ eperm_insults = {
def choose_insult():
return(sample(eperm_insults, 1)[0])
return sample(eperm_insults, 1)[0]
class DoorlockResponse(Enum):