A context manager that temporarily sets a setting and reverts to the original value when exiting the context.
(self, **kwargs)
| 392 | pass |
| 393 | |
| 394 | def settings(self, **kwargs): |
| 395 | """ |
| 396 | A context manager that temporarily sets a setting and reverts to the |
| 397 | original value when exiting the context. |
| 398 | """ |
| 399 | return override_settings(**kwargs) |
| 400 | |
| 401 | def modify_settings(self, **kwargs): |
| 402 | """ |
no test coverage detected