Skip to content

Commit

Permalink
📦 flexible imports
Browse files Browse the repository at this point in the history
  • Loading branch information
raynardj committed Jan 10, 2023
1 parent 327cf0d commit a4fb6c4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion forgebox/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.7"
__version__ = "1.0.8"
5 changes: 4 additions & 1 deletion forgebox/imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@
pass

from glob import glob
from PIL import Image
try:
from PIL import Image
except:
pass

Path.ls = lambda x: os.listdir(x)

0 comments on commit a4fb6c4

Please sign in to comment.