Skip to content

Commit

Permalink
umu_runtime: fix import error
Browse files Browse the repository at this point in the history
  • Loading branch information
R1kaB3rN committed Sep 3, 2024
1 parent 5a1b600 commit 742adb3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion umu/umu_runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
from concurrent.futures import Future, ThreadPoolExecutor
from hashlib import sha256
from http.client import HTTPException, HTTPResponse, HTTPSConnection
from importlib.resources.abc import Traversable

try:
from importlib.resources.abc import Traversable
except ModuleNotFoundError:
from importlib.abc import Traversable

from json import load
from pathlib import Path
from shutil import move, rmtree
Expand Down

0 comments on commit 742adb3

Please sign in to comment.