Skip to content

Commit

Permalink
Update djvu_support.py
Browse files Browse the repository at this point in the history
  • Loading branch information
FriedrichFroebel authored Aug 13, 2023
1 parent 7af5d9a commit dfbba0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions didjvu/djvu_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ def _chunk_order(key):


class Multichunk:
_chunk_names = 'Sjbz Smmr BG44 BGjp BG2k FGbz FG44 FGjp FG2k INCL Djbz'
_chunk_names = {x.lower(): x for x in _chunk_names.split()}
_chunk_names_string = 'Sjbz Smmr BG44 BGjp BG2k FGbz FG44 FGjp FG2k INCL Djbz'
_chunk_names = {x.lower(): x for x in _chunk_names_string.split()}
_info_re = re.compile(r' (\d+)x(\d+),.* (\d+) dpi,').search

def __init__(self, width=None, height=None, dpi=None, **chunks):
Expand Down

0 comments on commit dfbba0a

Please sign in to comment.