From 510658f0cb1ac6896d7fe2e6d6a5e8d387fc889f Mon Sep 17 00:00:00 2001 From: Atul Vinayak Date: Mon, 23 Sep 2024 14:46:20 -0700 Subject: [PATCH] Update output.ex --- lib/credo/cli/output.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/credo/cli/output.ex b/lib/credo/cli/output.ex index cf7fad119..c40974a67 100644 --- a/lib/credo/cli/output.ex +++ b/lib/credo/cli/output.ex @@ -33,7 +33,7 @@ defmodule Credo.CLI.Output do end def check_tag(check_mod, in_parens) do - check_mod.category() + check_mod.category |> to_string |> check_tag(in_parens) end