From 9107d2b618a90ca6c8585dff71fe6c2348be5dc3 Mon Sep 17 00:00:00 2001 From: Laurent Perron Date: Mon, 15 Jul 2019 10:24:27 -0700 Subject: [PATCH] minor reindent --- ortools/graph/csharp/graph.i | 3 ++- ortools/graph/samples/simple_max_flow_program.py | 1 - ortools/graph/samples/simple_min_cost_flow_program.py | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/ortools/graph/csharp/graph.i b/ortools/graph/csharp/graph.i index f017a179fb..352841bd9b 100644 --- a/ortools/graph/csharp/graph.i +++ b/ortools/graph/csharp/graph.i @@ -116,7 +116,8 @@ // We only expose the C++ "operations_research::SimpleLinearSumAssignment" // class, and we rename it "LinearSumAssignment". %rename(LinearSumAssignment) operations_research::SimpleLinearSumAssignment; -%unignore operations_research::SimpleLinearSumAssignment::SimpleLinearSumAssignment; +%unignore + operations_research::SimpleLinearSumAssignment::SimpleLinearSumAssignment; %unignore operations_research::SimpleLinearSumAssignment::AddArcWithCost; %unignore operations_research::SimpleLinearSumAssignment::Solve; %unignore operations_research::SimpleLinearSumAssignment::NumNodes; diff --git a/ortools/graph/samples/simple_max_flow_program.py b/ortools/graph/samples/simple_max_flow_program.py index bb7fd095f3..3c6565a21a 100644 --- a/ortools/graph/samples/simple_max_flow_program.py +++ b/ortools/graph/samples/simple_max_flow_program.py @@ -15,7 +15,6 @@ # [START import] from __future__ import print_function from ortools.graph import pywrapgraph - # [END import] diff --git a/ortools/graph/samples/simple_min_cost_flow_program.py b/ortools/graph/samples/simple_min_cost_flow_program.py index d146def02c..54615e8c37 100644 --- a/ortools/graph/samples/simple_min_cost_flow_program.py +++ b/ortools/graph/samples/simple_min_cost_flow_program.py @@ -15,7 +15,6 @@ # [START import] from __future__ import print_function from ortools.graph import pywrapgraph - # [END import]