Skip to content
Open
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
4 changes: 3 additions & 1 deletion test_junkie/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ def __get_value(self, key, default):
# if we have kwargs, attempt to retrieve value for the key
if self.kwargs is not None:
value = self.kwargs.get(key, Undefined)
source = "KWARGS"
# # if value is not Undefined, source=KWARGS
if not value is Undefined:
source = "KWARGS"

# if value is still __undefined__ and config provided, will check the config for a value to use
if value is Undefined and self.config is not None:
Expand Down