File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
splitio/models/grammar/matchers Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 11"""Semver matcher classes."""
2- import abc
32import logging
43
54from splitio .models .grammar .matchers .base import Matcher
65from 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 }}
You can’t perform that action at this time.
0 commit comments