From 0b2c06b5aedcc0b755ba17af935558c70a4a03fa Mon Sep 17 00:00:00 2001 From: lambdamusic Date: Sun, 3 Oct 2021 19:56:57 +0100 Subject: [PATCH] remove click dependency --- ontospy/ontodocs/viz_factory.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ontospy/ontodocs/viz_factory.py b/ontospy/ontodocs/viz_factory.py index 267426e1..17d1cf6b 100755 --- a/ontospy/ontodocs/viz_factory.py +++ b/ontospy/ontodocs/viz_factory.py @@ -17,7 +17,6 @@ # django loading requires different steps based on version # https://docs.djangoproject.com/en/dev/releases/1.7/#standalone-scripts import django -import click # http://stackoverflow.com/questions/1714027/version-number-comparison from distutils.version import StrictVersion @@ -42,7 +41,7 @@ from .CONFIG import VISUALIZATIONS_LIST VISUALIZATIONS_LIST = VISUALIZATIONS_LIST['Visualizations'] except: # Mother of all exceptions - click.secho("Visualizations configuration file not found.", fg="red") + printDebug("Visualizations configuration file not found.", fg="red") raise