1
0
mirror of https://github.com/quay/quay.git synced 2025-12-05 20:42:12 +03:00

'make black' results

This commit is contained in:
Tom McKay
2019-12-02 12:23:08 -05:00
parent 5d83b82b56
commit e6ae94db8b
781 changed files with 105190 additions and 85578 deletions

View File

@@ -1,16 +1,25 @@
from collections import namedtuple
class Repository(namedtuple('Repository', ['namespace_name', 'name'])):
"""
class Repository(namedtuple("Repository", ["namespace_name", "name"])):
"""
Repository represents a repository.
"""
class Notification(
namedtuple('Notification', [
'uuid', 'event_name', 'method_name', 'event_config_dict', 'method_config_dict',
'repository'])):
"""
namedtuple(
"Notification",
[
"uuid",
"event_name",
"method_name",
"event_config_dict",
"method_config_dict",
"repository",
],
)
):
"""
Notification represents a registered notification of some kind.
"""