summaryrefslogtreecommitdiff
path: root/wsme/runtime.py
diff options
context:
space:
mode:
authorJim Rollenhagen <jim@jimrollenhagen.com>2019-09-26 09:43:27 -0400
committerJim Rollenhagen <jim@jimrollenhagen.com>2019-09-26 09:43:27 -0400
commite9c6edfe510f4ed407f8d2d84b4b931a382b48b3 (patch)
tree94bbd6a34bcf09e99f7ae1be88b19960192d6adb /wsme/runtime.py
parent1d73d6e50411ebc45fb96a6ed3c63ca91a500323 (diff)
downloadwsme-master.tar.gz
Retire github mirror, repo moved to opendevHEADmaster
Diffstat (limited to 'wsme/runtime.py')
-rw-r--r--wsme/runtime.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/wsme/runtime.py b/wsme/runtime.py
deleted file mode 100644
index e114d13..0000000
--- a/wsme/runtime.py
+++ /dev/null
@@ -1,9 +0,0 @@
-from wsme.exc import MissingArgument
-
-
-def check_arguments(funcdef, args, kw):
- """Check if some arguments are missing"""
- assert len(args) == 0
- for arg in funcdef.arguments:
- if arg.mandatory and arg.name not in kw:
- raise MissingArgument(arg.name)