From 9cc168d24d12c86446fbeac63686e1722e53db9a Mon Sep 17 00:00:00 2001
From: XANTRONIX Industrial <xan@xantronix.com>
Date: Sun, 20 Apr 2025 15:28:11 -0400
Subject: [PATCH] Use argument keyword instead of positional

---
 bin/xmet-spc-render | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/xmet-spc-render b/bin/xmet-spc-render
index 78b98b6..52e3d10 100755
--- a/bin/xmet-spc-render
+++ b/bin/xmet-spc-render
@@ -85,7 +85,7 @@ args = argparser.parse_args()
 config = Config.load()
 db     = Database.from_config(config)
 
-conus  = SPCOutlookMap(args.dark)
+conus  = SPCOutlookMap(dark=args.dark)
 
 if args.file is None:
     if args.valid is None or args.day is None: