Skip to content

Commit 5cf1ec2

Browse files
committed
forth: fix import line
1 parent b1ff50a commit 5cf1ec2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

exercises/forth/forth.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1+
class StackUnderflowError(Exception):
2+
pass
3+
4+
15
def evaluate(input_data):
26
pass

exercises/forth/forth_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import unittest
22

3-
from example import evaluate, StackUnderflowError
3+
from forth import evaluate, StackUnderflowError
44

55

66
# test cases adapted from `x-common//canonical-data.json` @ version: 1.2.0

0 commit comments

Comments
 (0)