From ff8cba84c76cbdecc05f04ecdcb3de3fbebebaf6 Mon Sep 17 00:00:00 2001 From: Samuel Sloniker Date: Tue, 19 Jul 2022 16:02:05 -0700 Subject: [PATCH] format `pack.py` --- gptc/pack.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gptc/pack.py b/gptc/pack.py index 931fc01..9a20a4a 100644 --- a/gptc/pack.py +++ b/gptc/pack.py @@ -5,7 +5,9 @@ import os from typing import List, Dict, Tuple -def pack(directory: str, print_exceptions: bool=False) -> Tuple[List[Dict[str, str]], List[Tuple[Exception]]]: +def pack( + directory: str, print_exceptions: bool = False +) -> Tuple[List[Dict[str, str]], List[Tuple[Exception]]]: paths = os.listdir(directory) texts: Dict[str, List[str]] = {} exceptions = []