Skip to content

Commit

Permalink
✨ update to support python3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
YousefEZ committed Aug 4, 2024
1 parent aea72fd commit 48eab1c
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion qalib/translators/element/expansive.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
class ExpansiveEmbedAdapter(EmbedBaseAdapter):

def __init__(self, page_number_key: Optional[str] = None):
super().__init__()
self._page_number_key = page_number_key

@property
Expand Down
1 change: 0 additions & 1 deletion qalib/translators/json/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ def __init__(self, source: str):
Args:
source (str): source text that is parsed
"""
super().__init__(source)
self._data = json.loads(source)

def recursive_template(self, obj: OBJ, template_engine: TemplateEngine, keywords: Dict[str, Any]) -> OBJ:
Expand Down
1 change: 0 additions & 1 deletion qalib/translators/json/embed.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
class JSONEmbedBaseAdapter(EmbedBaseAdapter, ABC):

def __init__(self, embed: components.Embed):
super().__init__()
self._embed = embed

@property
Expand Down
1 change: 0 additions & 1 deletion qalib/translators/xml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ def __init__(self, source: str):
Args:
source (str): the text of the XML file
"""
super().__init__(source)
self.source = source

def template(self, template_engine: TemplateEngine, keywords: Dict[str, Any]) -> str:
Expand Down

0 comments on commit 48eab1c

Please sign in to comment.