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:
@@ -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.
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user