diff options
| author | 2024-02-25 11:55:54 +0800 | |
|---|---|---|
| committer | 2024-02-25 11:55:54 +0800 | |
| commit | 3f15d3828a3403bb3fe59bd8d2d82db45c02f90b (patch) | |
| tree | 834fd9ea1990868f087c4e7952203560e54d407f /nivis-python/lexer.py | |
| parent | 0bc1e29d7d587d4343b112fd444fdd5d9ec19e82 (diff) | |
| download | TRPGNivis-3f15d3828a3403bb3fe59bd8d2d82db45c02f90b.tar.gz TRPGNivis-3f15d3828a3403bb3fe59bd8d2d82db45c02f90b.zip | |
refactor!: sync package name
Diffstat (limited to 'nivis-python/lexer.py')
| -rw-r--r-- | nivis-python/lexer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nivis-python/lexer.py b/nivis-python/lexer.py index f4dafc4..7ba94e3 100644 --- a/nivis-python/lexer.py +++ b/nivis-python/lexer.py @@ -52,7 +52,7 @@ while token['type'] != 'EOF': print("\nAll tokens:") print([t['type'] for t in lexer]) """ -from psi.exception import ValueError +from .exception import ValueError __all__ = ["Token", "Lexer"] |
