From 8449ec95623f582b43437e634da18ef2380eb6e2 Mon Sep 17 00:00:00 2001 From: Andrei Bondarenko Date: Sun, 18 Jul 2021 10:58:56 +0200 Subject: [PATCH] Added type name to custom context mapping --- core/context/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/context/__init__.py b/core/context/__init__.py index e69de29..820a79d 100644 --- a/core/context/__init__.py +++ b/core/context/__init__.py @@ -0,0 +1,5 @@ +from core.context.simple_class_diagrams import SCDContext + +custom_contexts = { + "SimpleClassDiagrams": SCDContext +}