From 50d53f628fb979f28c28d52a86f20f0db2a797f4 Mon Sep 17 00:00:00 2001 From: "Alinson S. Xavier" Date: Tue, 24 Jan 2023 10:31:40 -0600 Subject: [PATCH] Reformat source code --- src/graph/dist.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graph/dist.jl b/src/graph/dist.jl index a5e1abf..05fe687 100644 --- a/src/graph/dist.jl +++ b/src/graph/dist.jl @@ -40,7 +40,7 @@ function _calculate_distance( end # Fit kNN model - df = DataFrame(CSV.File(csv_filename, missingstring="NaN")) + df = DataFrame(CSV.File(csv_filename, missingstring = "NaN")) dropmissing!(df) coords = Matrix(df[!, [:source_lat, :source_lon, :dest_lat, :dest_lon]])' metric.ratios = Matrix(df[!, [:ratio]])