Skip to content

Commit

Permalink
Incremented version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
idling-mind committed Dec 3, 2023
1 parent 6ac1442 commit 47029a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion html2dash/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .html2dash import html2dash

__version__ = "0.1.0"
__version__ = "0.2.0"
4 changes: 2 additions & 2 deletions html2dash/html2dash.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def html2dash(
Args:
html_str (str): The HTML string to convert.
module_list (list, optional): A list of modules to search for elements.
Defaults to [html, dcc].
Defaults to [html, dcc].
element_map (dict, optional): A dictionary mapping HTML elements to dash
components. Defaults to {}.
on_missing_element (str, optional): What to do when an element is not found.
Expand Down Expand Up @@ -183,7 +183,7 @@ def fix_hyphenated_attr(attr: str) -> str:

def style_str_to_dict(style_str: str) -> dict:
"""Convert the style string to a dictionary.
Args:
style_str (str): The style string to convert.
Expand Down

0 comments on commit 47029a9

Please sign in to comment.