From 0498bd03c6c2ca4a8ad70fb8dd20cfb5e8879158 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Mon, 2 Sep 2019 13:25:22 +0200 Subject: [PATCH] Improved formatting Signed-off-by: Jim Martens --- src/twomartens/masterthesis/cli.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/twomartens/masterthesis/cli.py b/src/twomartens/masterthesis/cli.py index 06f0f1a..4a9da25 100644 --- a/src/twomartens/masterthesis/cli.py +++ b/src/twomartens/masterthesis/cli.py @@ -572,10 +572,10 @@ def _ssd_evaluate_unbatch_list(glob_string: str) -> List[np.ndarray]: return unbatched -def _ssd_train_get_config_values(config_get: Callable[[str], Union[str, float, int, bool]] - ) -> Tuple[int, int, float, int, int, float, int, int, - str, str, str, str, str, - bool, bool]: +def _ssd_train_get_config_values(config_get: Callable[[str], Union[str, float, int, bool]]) \ + -> Tuple[int, int, float, int, int, float, int, int, + str, str, str, str, str, + bool, bool]: batch_size = config_get("Parameters.batch_size") image_size = config_get("Parameters.ssd_image_size")