From d4a86b2b10fc4960448a46c3ae62f1ef84b73ba2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Thu, 15 Jul 2021 13:10:04 +0200 Subject: [PATCH] docs/conf.py: Remove unused /utils directory from python path --- docs/conf.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 4c7a67164..a16d0624c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,8 +24,6 @@ from pygments_lexer_solidity import SolidityLexer, YulLexer # documentation root, use os.path.abspath to make it absolute, like shown here. def setup(sphinx): - thisdir = os.path.dirname(os.path.realpath(__file__)) - sys.path.insert(0, thisdir + '/utils') sphinx.add_lexer('Solidity', SolidityLexer) sphinx.add_lexer('Yul', YulLexer)