From 04008da268eb4ce0564cdaebf6b6f7cc20364f18 Mon Sep 17 00:00:00 2001 From: Levente Polyak Date: Tue, 12 Oct 2021 19:27:14 +0200 Subject: [PATCH] fix(keyringctl): do not line break before operators This is a lot easier to read and also fixes a style warning python issues. --- keyringctl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/keyringctl b/keyringctl index 0fbafa3..89174d8 100755 --- a/keyringctl +++ b/keyringctl @@ -799,8 +799,7 @@ def temp_join_keys(sources: List[Path], temp_dir: Path, force: bool) -> List[Pat for user_cert_number, user_cert_dir in enumerate(sorted(user_dir.iterdir())): if user_cert_dir.is_dir(): cert_path = ( - temp_dir - / ( + temp_dir / ( f"{str(source_number).zfill(4)}" f"-{str(user_number).zfill(4)}" f"-{str(user_cert_number).zfill(4)}.asc"