Skip to content

Commit 864a0f6

Browse files
author
Bilal Al
committed
polish
1 parent 922337d commit 864a0f6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

splitio/models/grammar/matchers/semver.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
"""Semver matcher classes."""
2-
import abc
32
import logging
43

54
from splitio.models.grammar.matchers.base import Matcher
65
from splitio.models.grammar.matchers.string import Sanitizer
76

87
_LOGGER = logging.getLogger(__name__)
98

10-
class Semver(object, metaclass=abc.ABCMeta):
9+
class Semver(object):
1110
"""Semver class."""
1211

1312
_METADATA_DELIMITER = "+"
@@ -388,4 +387,4 @@ def __str__(self):
388387

389388
def _add_matcher_specific_properties_to_json(self):
390389
"""Add matcher specific properties to base dict before returning it."""
391-
return {'matcherType': 'IN_LIST_SEMVER', 'whitelistMatcherData': {'whitelist': self._data}}
390+
return {'matcherType': 'IN_LIST_SEMVER', 'whitelistMatcherData': {'whitelist': self._data}}

0 commit comments

Comments
 (0)