From 7180651cfad6e83465bf45b7f9418ab8e0df2e17 Mon Sep 17 00:00:00 2001 From: Alinson S Xavier Date: Fri, 16 Jul 2021 10:15:41 -0500 Subject: [PATCH] Reformat source code --- src/instance/geodb.jl | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/instance/geodb.jl b/src/instance/geodb.jl index 847c997..9ee07c1 100644 --- a/src/instance/geodb.jl +++ b/src/instance/geodb.jl @@ -140,12 +140,15 @@ end # 2018 US counties # ----------------------------------------------------------------------------- -function _extract_cols_2018_us_county(table::Shapefile.Table, i::Int)::OrderedDict{String,Any} +function _extract_cols_2018_us_county( + table::Shapefile.Table, + i::Int, +)::OrderedDict{String,Any} return OrderedDict( "id" => table.STATEFP[i] * table.COUNTYFP[i], "statefp" => table.STATEFP[i], "countyfp" => table.COUNTYFP[i], - "name" => table.NAME[i] + "name" => table.NAME[i], ) end