Skip to content

Commit 7efc00d

Browse files
committed
Order keys in themepark table
1 parent 1a04b58 commit 7efc00d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lua/themepark.lua

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,15 @@ local function script_dir(num)
4444
end
4545

4646
local themepark = {
47-
dir = script_dir(1),
48-
theme_search_path = {},
47+
_columns = {},
4948
debug = false,
49+
dir = script_dir(1),
50+
layers = {},
5051
options = {
5152
schema = 'public',
5253
srid = 3857,
5354
attribution = '© OpenStreetMap contributors - https://openstreetmap.org/copyright',
5455
},
55-
layers = {},
56-
tables = {},
57-
themes = {},
58-
_columns = {},
5956
process = {
6057
node = {},
6158
way = {},
@@ -64,6 +61,9 @@ local themepark = {
6461
select_relation_members = {},
6562
gen = {}
6663
},
64+
tables = {},
65+
theme_search_path = {},
66+
themes = {},
6767
}
6868

6969
if os.getenv('THEMEPARK_DEBUG') then

0 commit comments

Comments
 (0)