Return the current configuration, but without defaults.
(self)
| 131 | return self.first('timezone', 'TIME_ZONE') |
| 132 | |
| 133 | def without_defaults(self): |
| 134 | """Return the current configuration, but without defaults.""" |
| 135 | # the last stash is the default settings, so just skip that |
| 136 | return Settings({}, self.maps[:-1]) |
| 137 | |
| 138 | def value_set_for(self, key): |
| 139 | return key in self.without_defaults() |
no test coverage detected