diff options
| author | 2024-02-24 13:04:40 +0800 | |
|---|---|---|
| committer | 2024-02-24 13:04:40 +0800 | |
| commit | 57b2835ecc6c9b30920e929985b9d7cafcb7c457 (patch) | |
| tree | df0c1221d4766365c231e8bd02e6d8e7bdb63420 /nivis-python/__init__.py | |
| parent | 45e2f3631bc8d13dacba57e705c7591e7e707b2a (diff) | |
| download | TRPGNivis-57b2835ecc6c9b30920e929985b9d7cafcb7c457.tar.gz TRPGNivis-57b2835ecc6c9b30920e929985b9d7cafcb7c457.zip | |
chore(project): add ruff deps
chore(lint): format code with ruff
chore(project): add tool.ruff format section
Diffstat (limited to 'nivis-python/__init__.py')
| -rw-r--r-- | nivis-python/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nivis-python/__init__.py b/nivis-python/__init__.py index b3e08df..f19e06b 100644 --- a/nivis-python/__init__.py +++ b/nivis-python/__init__.py @@ -3,10 +3,10 @@ @BODY 似乎要写的还蛮多的,所以先写几个TODO List """ -__all__ = ['psi', 'Exception', 'interpreter', 'lexer', 'Parser'] +__all__ = ["psi", "Exception", "interpreter", "lexer", "Parser"] from .psi import psi from .execution import Execution from .interpreter import Interpreter from .lexer import Lexer -from .parsers import Parser
\ No newline at end of file +from .parsers import Parser |
