Skip to content

Commit 3de4934

Browse files
committed
lint
1 parent df7a503 commit 3de4934

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

reddit_decider/__init__.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -942,7 +942,9 @@ def __init__(
942942
event_logger: Optional[EventLogger] = None,
943943
timeout: Optional[float] = None,
944944
backoff: Optional[float] = None,
945-
request_field_extractor: Optional[Callable[[RequestContext], Dict[str, Union[str, int, float, bool]]]] = None,
945+
request_field_extractor: Optional[
946+
Callable[[RequestContext], Dict[str, Union[str, int, float, bool]]]
947+
] = None,
946948
):
947949
self._filewatcher = FileWatcher(
948950
path=path, parser=init_decider_parser, timeout=timeout, backoff=backoff
@@ -1169,7 +1171,9 @@ def __init__(
11691171
self,
11701172
event_logger: EventLogger,
11711173
prefix: str = "experiments.",
1172-
request_field_extractor: Optional[Callable[[RequestContext], Dict[str, Union[str, int, float, bool]]]] = None,
1174+
request_field_extractor: Optional[
1175+
Callable[[RequestContext], Dict[str, Union[str, int, float, bool]]]
1176+
] = None,
11731177
):
11741178
self._prefix = prefix
11751179
self._event_logger = event_logger
@@ -1190,7 +1194,9 @@ def decider_client_from_config(
11901194
app_config: config.RawConfig,
11911195
event_logger: EventLogger,
11921196
prefix: str = "experiments.",
1193-
request_field_extractor: Optional[Callable[[RequestContext], Dict[str, Union[str, int, float, bool]]]] = None,
1197+
request_field_extractor: Optional[
1198+
Callable[[RequestContext], Dict[str, Union[str, int, float, bool]]]
1199+
] = None,
11941200
) -> DeciderContextFactory:
11951201
"""Configure and return an :py:class:`DeciderContextFactory` object.
11961202

0 commit comments

Comments
 (0)