Skip to content

Commit 69313a9

Browse files
committed
Flake8
1 parent a8338ec commit 69313a9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

colcon_python_setup_py/package_identification/out_of_process.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,19 @@
33

44

55
class OutOfProcessError(RuntimeError):
6-
"""An exception raised from a different process"""
6+
"""An exception raised from a different process."""
77

88
def __init__(self, description):
9+
"""Constructor."""
910
self.description = description
1011

1112
def __str__(self):
13+
""""""
1214
return self.description
1315

1416

1517
def out_of_process(fn):
16-
"""Decorator to wrap a function call in a subprocess"""
18+
"""Decorator to wrap a function call in a subprocess."""
1719

1820
@functools.wraps(fn)
1921
def wrapper(*args, **kwargs):

0 commit comments

Comments
 (0)