Skip to content

Commit

Permalink
Fixed imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mbanon committed Nov 2, 2021
1 parent 6fd02a3 commit ee7bf3e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 110 deletions.
2 changes: 1 addition & 1 deletion fastspell/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

name="fastspell"

from . import pyfastspell
from . import fastspell
105 changes: 0 additions & 105 deletions fastspell/pyfastspell

This file was deleted.

8 changes: 4 additions & 4 deletions scripts/fastspell
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

import sys
import logging
import fastspell.pyfastspell as pyfastspell
import fastspell.fastspell as fastspell


def main(argv):
try:
pyfastspell.logging_setup()
args = pyfastspell.initialization()
pyfastspell.main(args)
fastspell.logging_setup()
args = fastspell.initialization()
fastspell.main(args)
except Exception as es:
tb = traceback.format_exc()
logging.error(tb)
Expand Down

0 comments on commit ee7bf3e

Please sign in to comment.