diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2020-12-03 00:46:03 -0500 |
---|---|---|
committer | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2020-12-03 00:46:03 -0500 |
commit | 27860dd068dede7a20474090adb474609bae54f7 (patch) | |
tree | 07979b6d9dcdbdc95604111792dc021f062fb8dc /test/remote_test.py | |
parent | 45eff787cde1b6466fca494b2792898c42a9c06a (diff) |
tests: remove aenum library
the aenum library was used to provide intflag functionality
for python versions earlier than 3.6
Type: test
Change-Id: I914d390ee5364f337006c1c59abafe4b9a3c1bde
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'test/remote_test.py')
-rw-r--r-- | test/remote_test.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/remote_test.py b/test/remote_test.py index 8b3def2b8c6..ea271d58a89 100644 --- a/test/remote_test.py +++ b/test/remote_test.py @@ -10,10 +10,7 @@ import six from six import moves import sys -if sys.version_info < (3,): - from aenum import IntEnum, IntFlag -else: - from enum import IntEnum, IntFlag +from enum import IntEnum, IntFlag class SerializableClassCopy(object): |