mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 02:23:48 +00:00
9 lines
155 B
Python
9 lines
155 B
Python
# Copyright (c) 2010-2022 openpyxl
|
|
|
|
|
|
try:
|
|
from abc import ABC
|
|
except ImportError:
|
|
from abc import ABCMeta
|
|
ABC = ABCMeta('ABC', (object, ), {})
|