mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
6 lines
203 B
Python
6 lines
203 B
Python
from bauh.commons.system import SystemProcess, new_subprocess
|
|
|
|
|
|
def receive_key(key: str) -> SystemProcess:
|
|
return SystemProcess(new_subprocess(['gpg', '--recv-key', key]), check_error_output=False)
|