Files
Sven Riwoldt f7f8c52455 init
2024-10-19 12:31:37 +02:00

9 lines
155 B
Python

# Copyright (c) 2010-2024 openpyxl
try:
from abc import ABC
except ImportError:
from abc import ABCMeta
ABC = ABCMeta('ABC', (object, ), {})