From 2f6a2f242ebdc193d7eb1ed3a6961dcd53679cac Mon Sep 17 00:00:00 2001 From: Tomer Nosrati Date: Thu, 22 Jul 2021 12:27:53 +0300 Subject: [PATCH] Added fields.IPInterface marshmallow field type to python types mapping --- marshmallow_jsonschema/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/marshmallow_jsonschema/base.py b/marshmallow_jsonschema/base.py index b75f1ca..6ee3fa3 100644 --- a/marshmallow_jsonschema/base.py +++ b/marshmallow_jsonschema/base.py @@ -86,6 +86,7 @@ (fields.List, list), (fields.Number, decimal.Decimal), (fields.IP, str), + (fields.IPInterface, str), # This one is here just for completeness sake and to check for # unknown marshmallow fields more cleanly. (fields.Nested, dict),