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:
parent
4e98585232
commit
04008da268
@ -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())):
|
for user_cert_number, user_cert_dir in enumerate(sorted(user_dir.iterdir())):
|
||||||
if user_cert_dir.is_dir():
|
if user_cert_dir.is_dir():
|
||||||
cert_path = (
|
cert_path = (
|
||||||
temp_dir
|
temp_dir / (
|
||||||
/ (
|
|
||||||
f"{str(source_number).zfill(4)}"
|
f"{str(source_number).zfill(4)}"
|
||||||
f"-{str(user_number).zfill(4)}"
|
f"-{str(user_number).zfill(4)}"
|
||||||
f"-{str(user_cert_number).zfill(4)}.asc"
|
f"-{str(user_cert_number).zfill(4)}.asc"
|
||||||
|
Loading…
Reference in New Issue
Block a user