Skip to content

Commit 927a620

Browse files
committed
Fix flake8
1 parent 5572e12 commit 927a620

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

intro-to-threading/prodcom_event.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77

88

99
class Pipeline:
10-
"""Class to allow a single element pipeline between producer and consumer."""
10+
"""
11+
Class to allow a single element pipeline
12+
between producer and consumer.
13+
"""
1114

1215
def __init__(self):
1316
self.value = 0

intro-to-threading/prodcom_lock.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@
88

99

1010
class Pipeline:
11-
"""Class to allow a single element pipeline between producer and consumer."""
11+
"""
12+
Class to allow a single element pipeline
13+
between producer and consumer.
14+
"""
1215

1316
def __init__(self):
1417
self.message = 0

0 commit comments

Comments
 (0)