1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-05 09:17:41 +03:00

F #6577: Replace aenum by enum (#3220)

This commit is contained in:
Jan Orel 2024-09-10 13:18:40 +02:00 committed by GitHub
parent 1a1bc3c294
commit 148e488832
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ import requests
import requests.utils
from six import string_types
from aenum import IntEnum
from enum import IntEnum
from pyone import bindings
from .util import cast2one

View File

@ -18,7 +18,7 @@ import dict2xml
import xmltodict
from lxml.etree import tostring
from collections import OrderedDict
from aenum import IntEnum
from enum import IntEnum
# this is a bit hackish way to avoid escaping <,> characters
# by dict2xml, as it would break <!CDATA[]> which is injected before

View File

@ -27,7 +27,7 @@ install_requires = [
'dict2xml',
'xmltodict',
'six',
'aenum',
'enum',
'tblib',
'requests'
]