Skip to content
Snippets Groups Projects
Unverified Commit 89cfefaf authored by Hardik Zinzuvadiya's avatar Hardik Zinzuvadiya Committed by GitHub
Browse files

Merge pull request #416 from Harsh0707005/Harsh0707005-#415

Issue #415: Added code to access parent directory for fixing import error for core.py
parents f5aff554 cd25c260
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