chore: remove unneeded echos (#26)

Remove unneeded echos
This commit is contained in:
Eric 2024-10-23 16:32:41 +11:00 committed by GitHub
parent cf59b42ed5
commit c81b751602
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -258,9 +258,6 @@ proc fromJson*[T: ref object or object](_: type T, bytes: openArray[byte]): ?!T
T.fromJson(json)
proc fromJson*[T: ref object or object](_: type T, json: string): ?!T =
echo "here1, T: ", T
when T is Option:
echo " we have an option!"
let jsn = ?JsonNode.parse(json) # full qualification required in-module only
T.fromJson(jsn)