|
22 | 22 | CalledProcessError, |
23 | 23 | ParallelCallProcessError, |
24 | 24 | ParallelCallExceptions, |
25 | | - ExecHelperTimeoutError |
| 25 | + ExecHelperTimeoutError, |
26 | 26 | ) |
27 | 27 |
|
28 | 28 | from .exec_result import ExecResult |
|
33 | 33 | from .subprocess_runner import Subprocess, SubprocessExecuteAsyncResult # nosec # Expected |
34 | 34 |
|
35 | 35 | __all__ = ( |
36 | | - 'ExecHelperError', |
37 | | - 'ExecCalledProcessError', |
38 | | - 'CalledProcessError', |
39 | | - 'ParallelCallExceptions', |
40 | | - 'ParallelCallProcessError', |
41 | | - 'ExecHelperTimeoutError', |
42 | | - 'ExecHelper', |
43 | | - 'SSHClient', |
44 | | - 'SshExecuteAsyncResult', |
45 | | - 'SSHAuth', |
46 | | - 'Subprocess', |
47 | | - 'SubprocessExecuteAsyncResult', |
48 | | - 'ExitCodes', |
49 | | - 'ExecResult', |
| 36 | + "ExecHelperError", |
| 37 | + "ExecCalledProcessError", |
| 38 | + "CalledProcessError", |
| 39 | + "ParallelCallExceptions", |
| 40 | + "ParallelCallProcessError", |
| 41 | + "ExecHelperTimeoutError", |
| 42 | + "ExecHelper", |
| 43 | + "SSHClient", |
| 44 | + "SshExecuteAsyncResult", |
| 45 | + "SSHAuth", |
| 46 | + "Subprocess", |
| 47 | + "SubprocessExecuteAsyncResult", |
| 48 | + "ExitCodes", |
| 49 | + "ExecResult", |
50 | 50 | ) |
51 | 51 |
|
52 | | -__version__ = '2.0.2' |
| 52 | +__version__ = "2.0.2" |
53 | 53 | __author__ = "Alexey Stepanov" |
54 | | -__author_email__ = 'penguinolog@gmail.com' |
| 54 | +__author_email__ = "penguinolog@gmail.com" |
55 | 55 | __maintainers__ = { |
56 | | - 'Alexey Stepanov': 'penguinolog@gmail.com', |
57 | | - 'Antonio Esposito': 'esposito.cloud@gmail.com', |
58 | | - 'Dennis Dmitriev': 'dis-xcom@gmail.com', |
| 56 | + "Alexey Stepanov": "penguinolog@gmail.com", |
| 57 | + "Antonio Esposito": "esposito.cloud@gmail.com", |
| 58 | + "Dennis Dmitriev": "dis-xcom@gmail.com", |
59 | 59 | } |
60 | | -__url__ = 'https://github.com/python-useful-helpers/exec-helpers' |
61 | | -__description__ = ( |
62 | | - "Execution helpers for simplified usage of subprocess and ssh." |
63 | | -) |
| 60 | +__url__ = "https://github.com/python-useful-helpers/exec-helpers" |
| 61 | +__description__ = "Execution helpers for simplified usage of subprocess and ssh." |
64 | 62 | __license__ = "Apache License, Version 2.0" |
0 commit comments