From d6e831367ca3b71ba5b0ead73230f94f3ae9f609 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Fri, 27 Sep 2024 16:14:44 -0500 Subject: [PATCH] don't export tryImport --- src/hwylterm/cligen.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hwylterm/cligen.nim b/src/hwylterm/cligen.nim index fb4745a..5a4be0b 100644 --- a/src/hwylterm/cligen.nim +++ b/src/hwylterm/cligen.nim @@ -7,7 +7,7 @@ import std/[tables] import ./bbansi -template tryImport*(x, body) = +template tryImport(x, body) = when not (compiles do: import x): body else: import x tryImport pkg/cligen: {.fatal: "hwylterm/cli requires cligen>=1.7.5".}