Commit 413c81d6 authored by coconux's avatar coconux
Browse files

Set path to module tools in script

parent 9021e572
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -26,7 +26,8 @@ import requests
from yaml import full_load, YAMLError
from jinja2 import Environment, FileSystemLoader, TemplateNotFound

# Import the config module
# Set the Path and import the config module
sys.path.insert(0, "./")
from tools.utils.utils import Config
utils = Config()

+2 −1
Original line number Diff line number Diff line
@@ -7,7 +7,8 @@ import yaml
import argparse
import re

# Import the config module
# Set the Path and import the config module
sys.path.insert(0, "./")
from tools.utils.utils import Config
utils = Config()

+2 −1
Original line number Diff line number Diff line
@@ -6,7 +6,8 @@ import logging
import yaml
import argparse

# Import the config module
# Set the Path and import the config module
sys.path.insert(0, "./")
from tools.utils.utils import Config
utils = Config()

+2 −1
Original line number Diff line number Diff line
@@ -9,7 +9,8 @@ from urllib.parse import quote, urlencode
from os import getenv, listdir
import requests

# Import the config module
# Set the Path and import the config module
sys.path.insert(0, "./")
from tools.utils.utils import Config
utils = Config()

+2 −1
Original line number Diff line number Diff line
@@ -5,7 +5,8 @@ import logging
import sys
import yaml

# Import the config module
# Set the Path and import the config module
sys.path.insert(0, "./")
from tools.utils.utils import Config
utils = Config()