update to python fastpi
This commit is contained in:
19
Backend/venv/lib/python3.12/site-packages/PIL/_util.py
Normal file
19
Backend/venv/lib/python3.12/site-packages/PIL/_util.py
Normal file
@@ -0,0 +1,19 @@
|
||||
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
|
||||
Reference in New Issue
Block a user