diff options
| author | mryouse | 2022-07-11 01:57:33 +0000 |
|---|---|---|
| committer | mryouse | 2022-07-11 01:57:33 +0000 |
| commit | 0ed39a708e332399b871a88bf6c7a777630f9247 (patch) | |
| tree | bae2cbbaea3a4507e908bf661495f856a0ef11de /neb/std | |
| parent | 2006ac2b87d8af1c9df93cacdd1cb8c7b9307779 (diff) | |
bugfix: remove extra print statements
Diffstat (limited to 'neb/std')
| -rw-r--r-- | neb/std/boolean.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/neb/std/boolean.py b/neb/std/boolean.py index b37eaed..e480656 100644 --- a/neb/std/boolean.py +++ b/neb/std/boolean.py @@ -12,7 +12,6 @@ def interpretEq(symbol, args, env, ns): else: return Bool(False) elif type(args[0]) != type(args[1]): - print(f"not the same {type(args[0])} {type(args[1])}") return Bool(False) elif isinstance(args[0], Literal): if args[0].value == args[1].value: |
