Skip to content

Commit

Permalink
Fix PyPI package on Python>=3.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
whitequark committed Apr 4, 2024
1 parent d666115 commit dca8967
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pypi/yowasp_wavedrom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
import json
import pathlib
import quickjs
import importlib_resources
try:
import importlib.resources as importlib_resources
except ImportError:
import importlib_resources


def render(source):
Expand Down

0 comments on commit dca8967

Please sign in to comment.