0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-21 22:22:43 -05:00

🐛 Fix future linter issue on common schema ns

This commit is contained in:
Andrey Antukh 2024-10-22 17:10:04 +02:00
parent 9064b9f849
commit 1da5fd106a

View file

@ -29,8 +29,7 @@
(defprotocol ILazySchema
(-validate [_ o])
(-explain [_ o])
(-decode [_ o]))
(-explain [_ o]))
(def default-options
{:registry sr/default-registry})
@ -337,9 +336,7 @@
(-validate [_ o]
(@validator o))
(-explain [_ o]
(@explainer o))
(-decode [_ o]
(@decoder o)))))
(@explainer o)))))
;; --- BUILTIN SCHEMAS