From 08ec8a3fdbbd14b5597b3a66f5366b8c45daddad Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sun, 23 Jun 2019 21:39:35 +0100 Subject: [PATCH] tweak __all__ generation code for enums --- steam/enums/common.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/steam/enums/common.py b/steam/enums/common.py index 0e462be..b9c2358 100644 --- a/steam/enums/common.py +++ b/steam/enums/common.py @@ -542,8 +542,9 @@ class ECurrencyCode(SteamIntEnum): # Do not remove from enum import EnumMeta -__all__ = list(map(lambda y: y.__name__, - filter(lambda x: x.__class__ is EnumMeta, globals().values()), - )) +__all__ = [obj.__name__ + for obj in globals().values() + if obj.__class__ is EnumMeta and obj.__name__ != 'SteamIntEnum' + ] del EnumMeta