1
0
forked from VimPlug/jedi

Add type checking for sith.py run

This commit is contained in:
Aaron Meurer
2013-07-28 15:12:51 -05:00
parent ae09a2d0a4
commit 47bed4a30d

View File

@@ -75,6 +75,8 @@ class SourceFinder(object):
class TestCase(object):
def __init__(self, operation, path, line, column, traceback=None):
if operation not in self.operations:
raise ValueError("%s is not a valid operation" % operation)
self.operation = operation
self.path = path
self.line = line