Skip to content

Commit

Permalink
changed imports to be relative
Browse files Browse the repository at this point in the history
  • Loading branch information
eyaler committed Jun 21, 2022
1 parent 9c054a3 commit 36abc78
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ztml/base125.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

from typing import Optional

from ztml import default_names
from . import default_names


illegal = ['', 13, 92, 96]
Expand Down
2 changes: 1 addition & 1 deletion ztml/crenc.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import re
from typing import Optional, Tuple, Union

from ztml import default_names
from . import default_names


def find_best_escape(data: bytes) -> int:
Expand Down
2 changes: 1 addition & 1 deletion ztml/deflate.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import png
import zopfli

from ztml import default_names
from . import default_names


max_dim = 32767
Expand Down
2 changes: 1 addition & 1 deletion ztml/huffman.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from bitarray.util import ba2int, canonical_decode, canonical_huffman
import numpy as np

from ztml import default_names
from . import default_names


no_huffman = False # note: not implemented in decoder
Expand Down
2 changes: 1 addition & 1 deletion ztml/text_utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import re
from typing import Tuple

from ztml import default_names
from . import default_names


newline = '\n\v\f\r\x85\u2028\u2029'
Expand Down
2 changes: 1 addition & 1 deletion ztml/validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from selenium.webdriver.support.ui import WebDriverWait
from webdriver_manager.chrome import ChromeDriverManager

from ztml import text_utils
from . import text_utils


chrome_options = Options()
Expand Down

0 comments on commit 36abc78

Please sign in to comment.