Skip to content

Commit

Permalink
fix: [import] use as library problem
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidCruciani committed Oct 4, 2023
1 parent 0afaef6 commit fbbe7f2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ail_typo_squatting/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@
from ail_typo_squatting.typo import singularPluralize
from ail_typo_squatting.typo import changeDotDash
from ail_typo_squatting.typo import addDynamicDns
from ail_typo_squatting.typo import check_valid_domain
from ail_typo_squatting.generator.utils.generator_functions import check_valid_domain
from ail_typo_squatting.typo import numeralSwap
3 changes: 3 additions & 0 deletions ail_typo_squatting/typo.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
## The public libraries
import os, sys, math

import pathlib, sys
sys.path.append(str(os.path.join(pathlib.Path(__file__).parent)))

## The local libraries
from generator.const.main import *

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ail-typo-squatting"
version = "2.6.2"
version = "2.7.2"
description = "Generate list of domain name using Domain name permutation engine to feed AIL"
authors = [
"David Cruciani <[email protected]>"
Expand Down

0 comments on commit fbbe7f2

Please sign in to comment.