Skip to content
Snippets Groups Projects
Commit cd25c260 authored by Harsh Master's avatar Harsh Master
Browse files

Issue #415: Added code to access parent directory for fixing import error for core.py

Fixed Import Error: Issue #415
parent f5aff554
Branches
No related tags found
No related merge requests found
# coding=utf-8
import os
import sys
# Fetching parent directory for importing core.py
current_dir = os.path.dirname(__file__)
parent_dir = os.path.dirname(current_dir)
sys.path.append(parent_dir)
from core import HackingTool
from core import HackingToolsCollection
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment