Skip to content
Snippets Groups Projects
Commit fcb24079 authored by Aimee Linden's avatar Aimee Linden
Browse files

VWR-20747 (SNOW-527) FIXED Don't import deprecated python module sets

parent 302b3a07
No related branches found
No related tags found
No related merge requests found
......@@ -150,6 +150,7 @@ blino Nakamura
VWR-17
Boroondas Gupte
SNOW-278
SNOW-527
VWR-233
WEB-262
Bulli Schumann
......
......@@ -26,8 +26,6 @@ THE SOFTWARE.
$/LicenseInfo$
"""
from sets import Set, ImmutableSet
from compatibility import Incompatible, Older, Newer, Same
from tokenstream import TokenStream
......@@ -44,8 +42,8 @@ class Template:
def compatibleWithBase(self, base):
messagenames = (
ImmutableSet(self.messages.keys())
| ImmutableSet(base.messages.keys())
frozenset(self.messages.keys())
| frozenset(base.messages.keys())
)
compatibility = Same()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment