Skip to content

Commit

Permalink
xml files not being metaguided (#7)
Browse files Browse the repository at this point in the history
* xml files not being metaguided
Fixes #5

* fixes lint action with new ruff 0.6 version command requirements (#8)
  • Loading branch information
0x6f677548 authored Aug 20, 2024
1 parent 3f7d211 commit 486e3b6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions _common/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ def __init__(self, filename: str | None = None, content: bytes = b"") -> None:
file_extension == ".HTM"
or file_extension == ".HTML"
or file_extension == ".XHTML"
or file_extension == ".XML"
)
self.transformed = False

Expand Down
1 change: 1 addition & 0 deletions epubmg_filetypeplugin/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ def __init__(self, filename: str | None = None, content: bytes = b"") -> None:
file_extension == ".HTM"
or file_extension == ".HTML"
or file_extension == ".XHTML"
or file_extension == ".XML"
)
self.transformed = False

Expand Down
1 change: 1 addition & 0 deletions epubmg_interfaceplugin/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ def __init__(self, filename: str | None = None, content: bytes = b"") -> None:
file_extension == ".HTM"
or file_extension == ".HTML"
or file_extension == ".XHTML"
or file_extension == ".XML"
)
self.transformed = False

Expand Down
1 change: 1 addition & 0 deletions epubmg_outputplugin/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ def __init__(self, filename: str | None = None, content: bytes = b"") -> None:
file_extension == ".HTM"
or file_extension == ".HTML"
or file_extension == ".XHTML"
or file_extension == ".XML"
)
self.transformed = False

Expand Down

0 comments on commit 486e3b6

Please sign in to comment.