Skip to content

Commit dc29feb

Browse files
author
Sakis Kasampalis
committedMar 14, 2014
Merge pull request faif#45 from osscca/master
Small PEP8 corrections
2 parents e15da30 + ed68d2a commit dc29feb

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed
 

‎facade.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
SLEEP = 0.5
77

8+
89
# Complex Parts
910
class TC1:
1011
def run(self):
@@ -68,16 +69,16 @@ def runAll(self):
6869
# Running test
6970
# Tearing down
7071
# Test Finished
71-
#
72+
#
7273
# ###### In Test 2 ######
7374
# Setting up
7475
# Running test
7576
# Tearing down
7677
# Test Finished
77-
#
78+
#
7879
# ###### In Test 3 ######
7980
# Setting up
8081
# Running test
8182
# Tearing down
8283
# Test Finished
83-
#
84+
#

‎memento.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ def DoStuff(self):
9191
n.DoStuff()
9292
except:
9393
print('-> doing stuff failed!')
94-
import sys, traceback
94+
import sys
95+
import traceback
9596
traceback.print_exc(file=sys.stdout)
9697
pass
9798
print(n)

‎publish_subscribe.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33

4-
'''
4+
"""
55
Reference: http://www.slideshare.net/ishraqabd/publish-subscribe-model-overview-13368808
66
Author: https://github.com/HanWenfang
7-
'''
7+
"""
88

99

1010
class Provider:

0 commit comments

Comments
 (0)
Please sign in to comment.