fix(keyringctl): do not line break before operators

This is a lot easier to read and also fixes a style warning python
issues.
This commit is contained in:
Levente Polyak 2021-10-12 19:27:14 +02:00
parent 4e98585232
commit 04008da268
No known key found for this signature in database
GPG Key ID: FC1B547C8D8172C8

View File

@ -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"