Skip to content

Commit

Permalink
Merge pull request #332 from MarcCote/fix_importlib
Browse files Browse the repository at this point in the history
Fix importlib.resources
  • Loading branch information
MarcCote committed Nov 22, 2023
2 parents 612c589 + 581cbaa commit 61b5b44
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions textworld/envs/glulx/git_glulx.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
import sys
import textwrap
import subprocess
import importlib
from os.path import join as pjoin

import importlib.resources
from typing import Union
from os.path import join as pjoin


from glk import ffi, lib
from io import StringIO
Expand Down
3 changes: 2 additions & 1 deletion textworld/generator/inform7/world2inform7.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
import os
import shutil
import warnings
import importlib
import subprocess
import textwrap

import importlib.resources
from os.path import join as pjoin
from typing import Iterable, Optional, List

Expand Down

0 comments on commit 61b5b44

Please sign in to comment.