diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-29 17:06:50 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-29 17:29:50 -0500 |
commit | c802be289c40f896e910a4f34f1ce27aedc44a0b (patch) | |
tree | 2892de99d7f5ae157f659318df709757baf86e80 /coverage/misc.py | |
parent | bc83e9c53b810251ee11104eda1ee70772aeff72 (diff) | |
download | python-coveragepy-git-c802be289c40f896e910a4f34f1ce27aedc44a0b.tar.gz |
refactor: @contract is completely gone
Diffstat (limited to 'coverage/misc.py')
-rw-r--r-- | coverage/misc.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/coverage/misc.py b/coverage/misc.py index 2505e871..0da7f398 100644 --- a/coverage/misc.py +++ b/coverage/misc.py @@ -91,16 +91,6 @@ def import_third_party(modname): return None -# We don't use PyContracts anymore, but the @contracts decorators will be -# useful info when it comes time to add type annotations, so keep them as -# dummies for now. -def contract(*args_unused, **kwargs_unused): - """Dummy no-op implementation of a decorator with arguments.""" - def _decorator(func): - return func - return _decorator - - def nice_pair(pair): """Make a nice string representation of a pair of numbers. |