Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions ldclient/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@

__LONG_SCALE__ = float(0xFFFFFFFFFFFFFFF)

__BUILTINS__ = ["key", "ip", "country", "email", "firstName", "lastName", "avatar", "name", "anonymous"]

"""Settings."""
start_wait = 5

Expand Down
2 changes: 0 additions & 2 deletions ldclient/impl/evaluator_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@

__LONG_SCALE__ = float(0xFFFFFFFFFFFFFFF)

__BUILTINS__ = ["key", "secondary", "ip", "country", "email", "firstName", "lastName", "avatar", "name", "anonymous"]


# EvalResult is used internally to hold the EvaluationDetail result of an evaluation along with
# other side effects that are not exposed to the application, such as events generated by
Expand Down
5 changes: 2 additions & 3 deletions ldclient/impl/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,12 @@ def timedelta_millis(delta: timedelta) -> float:
return delta / timedelta(milliseconds=1)


log = logging.getLogger('ldclient.util') # historical logger name
# historical logger name; cleaning up the SDK's logger names is tracked in SDK-2696
log = logging.getLogger('ldclient.util')


__LONG_SCALE__ = float(0xFFFFFFFFFFFFFFF)

__BUILTINS__ = ["key", "ip", "country", "email", "firstName", "lastName", "avatar", "name", "anonymous"]

__BASE_TYPES__ = (str, float, int, bool)

# Maximum length for SDK keys
Expand Down
Loading