reindent all python code

This commit is contained in:
lperron@google.com
2014-05-22 20:13:16 +00:00
parent 87e0940b36
commit b3c56a368f
140 changed files with 8723 additions and 8727 deletions

View File

@@ -19,7 +19,6 @@
"""
from google.apputils import app
from ortools.graph import pywrapgraph
@@ -36,7 +35,7 @@ def RunAssignmentOn4x4Matrix():
expected_cost = cost[0][3] + cost[1][2] + cost[2][1] + cost[3][0]
assignment = pywrapgraph.LinearSumAssignment()
for source in range (0, num_sources):
for source in range(0, num_sources):
for target in range(0, num_targets):
assignment.AddArcWithCost(source, target, cost[source][target])