Skip to content

Commit 6e8fc0e

Browse files
authored
Merge pull request #976 from cmccandless/forth-fix-import-line
forth: fix import line
2 parents b1ff50a + 5cf1ec2 commit 6e8fc0e

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)