We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8338ec commit 69313a9Copy full SHA for 69313a9
colcon_python_setup_py/package_identification/out_of_process.py
@@ -3,17 +3,19 @@
3
4
5
class OutOfProcessError(RuntimeError):
6
- """An exception raised from a different process"""
+ """An exception raised from a different process."""
7
8
def __init__(self, description):
9
+ """Constructor."""
10
self.description = description
11
12
def __str__(self):
13
+ """"""
14
return self.description
15
16
17
def out_of_process(fn):
- """Decorator to wrap a function call in a subprocess"""
18
+ """Decorator to wrap a function call in a subprocess."""
19
20
@functools.wraps(fn)
21
def wrapper(*args, **kwargs):
0 commit comments