Skip to content

Commit

Permalink
Fixed deprecated import in scripts/util.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gto76 committed Mar 8, 2024
1 parent f37897c commit 905b059
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ def camelcaseToUnderscore(command):
s1 = re.sub('(.)([A-Z][a-z]+)', r'\1_\2', command)
return re.sub('([a-z0-9])([A-Z])', r'\1_\2', s1).lower()

import collections
from collections.abc import MutableSet

class OrderedSet(collections.MutableSet):
class OrderedSet(MutableSet):

def __init__(self, iterable=None):
self.end = end = []
Expand Down

0 comments on commit 905b059

Please sign in to comment.