Skip to content

Commit cf50b9f

Browse files
committed
De-indent python comments (minor)
1 parent 50f80b1 commit cf50b9f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/src/main/python/als.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def update(i, vec, mat, ratings):
4747

4848
if __name__ == "__main__":
4949
"""
50-
Usage: als [M] [U] [F] [iterations] [slices]"
50+
Usage: als [M] [U] [F] [iterations] [slices]"
5151
"""
5252
sc = SparkContext(appName="PythonALS")
5353
M = int(sys.argv[1]) if len(sys.argv) > 1 else 100

examples/src/main/python/transitive_closure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def generateGraph():
3737

3838
if __name__ == "__main__":
3939
"""
40-
Usage: transitive_closure [slices]
40+
Usage: transitive_closure [slices]
4141
"""
4242
sc = SparkContext(appName="PythonTransitiveClosure")
4343
slices = int(sys.argv[1]) if len(sys.argv) > 1 else 2

0 commit comments

Comments
 (0)