From a1582ce0944967c44b825b029b90dcae5c230d0f Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Wed, 28 Jul 2021 23:28:44 -0400 Subject: [PATCH] REF remove useless finalizer --- schema/Theme.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/schema/Theme.lua b/schema/Theme.lua index 92c7fc8..77bb3ff 100644 --- a/schema/Theme.lua +++ b/schema/Theme.lua @@ -1,7 +1,6 @@ local M = {} local Color = require 'Color' -local Util = require 'Util' M.FONT = 'Neuropolitical' @@ -62,4 +61,4 @@ M.PLOT_FILL_BG_PRIMARY = Color.gradient_rgba{ -- panel pattern M.PANEL_BG = Color.rgba(0x121212, 0.7) -return Util.set_finalizer(M, function() print('Cleaning up Patterns.lua') end) +return M