diff options
| author | mryouse | 2022-07-24 21:33:21 +0000 |
|---|---|---|
| committer | mryouse | 2022-07-24 21:33:21 +0000 |
| commit | 29f53626bd46bc9681af776cc01ccea6ec81bd06 (patch) | |
| tree | e300c6631a0e71e6f01f23200eb0d90a94e13c32 | |
| parent | 54808927fa3cb43581d5f1f98f0d5a8d195018ee (diff) | |
bugfix: missing datetime import for 'bench'
| -rw-r--r-- | neb/std/core.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/neb/std/core.py b/neb/std/core.py index 344ac74..569a87d 100644 --- a/neb/std/core.py +++ b/neb/std/core.py @@ -1,6 +1,7 @@ from .. import TypeEnum, Environment, Arg, Builtin, UserFunction, evaluate, interpret, parse, lex, InterpretPanic, TypeWrap, Function, UserType, NebSyntax, MultiFunction from ..structs import * from pathlib import Path +from datetime import datetime CORE = Environment() |
