Pillow/src/PIL/_util.py
2023-12-21 13:13:31 +02:00

22 lines
405 B
Python

from __future__ import annotations
import os
from pathlib import Path
def is_path(f):
return isinstance(f, (bytes, str, Path))
def is_directory(f):
"""Checks if an object is a string, and that it points to a directory."""
return is_path(f) and os.path.isdir(f)
class DeferredError:
def __init__(self, ex):
self.ex = ex
def __getattr__(self, elt):
raise self.ex