Updated script that can be controled by Nodejs web app
This commit is contained in:
8
lib/python3.13/site-packages/openpyxl/compat/abc.py
Normal file
8
lib/python3.13/site-packages/openpyxl/compat/abc.py
Normal file
@ -0,0 +1,8 @@
|
||||
# Copyright (c) 2010-2024 openpyxl
|
||||
|
||||
|
||||
try:
|
||||
from abc import ABC
|
||||
except ImportError:
|
||||
from abc import ABCMeta
|
||||
ABC = ABCMeta('ABC', (object, ), {})
|
Reference in New Issue
Block a user