Skip to content

Commit d4860bc

Browse files
author
Matias Melograno
committed
removed unnevesary check
1 parent 3c70714 commit d4860bc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

splitio/sync/split.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def synchronize_splits(self, till=None):
6060

6161
self._split_storage.set_change_number(split_changes['till'])
6262
if split_changes['till'] == split_changes['since'] \
63-
and (till is None or (till is not None and split_changes['till'] >= till)):
63+
and (till is None or split_changes['till'] >= till):
6464
return
6565

6666
def kill_split(self, split_name, default_treatment, change_number):

0 commit comments

Comments
 (0)