Skip to content

Commit

Permalink
Fix order of imports
Browse files Browse the repository at this point in the history
  • Loading branch information
isaac091 committed Nov 10, 2023
1 parent a647ff1 commit 55c982d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions machine/scripture/parse.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
from typing import List, Set, Union
import re
from typing import List, Set, Union

from .verse_ref import Versification
from .canon import book_id_to_number

from .verse_ref import Versification

USFM_FILE_PATTERN = re.compile(r"(?<=[A-Z]{3})\d+\.usfm")
BOOK_SPAN = re.compile(r"[A-Z]{3}-[A-Z]{3}")
Expand Down

0 comments on commit 55c982d

Please sign in to comment.