We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 922337d commit 864a0f6Copy full SHA for 864a0f6
1 file changed
splitio/models/grammar/matchers/semver.py
@@ -1,13 +1,12 @@
1
"""Semver matcher classes."""
2
-import abc
3
import logging
4
5
from splitio.models.grammar.matchers.base import Matcher
6
from splitio.models.grammar.matchers.string import Sanitizer
7
8
_LOGGER = logging.getLogger(__name__)
9
10
-class Semver(object, metaclass=abc.ABCMeta):
+class Semver(object):
11
"""Semver class."""
12
13
_METADATA_DELIMITER = "+"
@@ -388,4 +387,4 @@ def __str__(self):
388
387
389
def _add_matcher_specific_properties_to_json(self):
390
"""Add matcher specific properties to base dict before returning it."""
391
- return {'matcherType': 'IN_LIST_SEMVER', 'whitelistMatcherData': {'whitelist': self._data}}
+ return {'matcherType': 'IN_LIST_SEMVER', 'whitelistMatcherData': {'whitelist': self._data}}
0 commit comments