Update __init__.py

Missing commas in __all__ list
This commit is contained in:
MikiTwenty 2024-05-24 11:26:37 +02:00 committed by GitHub
parent bd24b5be05
commit d58398819a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
from . import idl, utils, core, rpc, go2 from . import idl, utils, core, rpc, go2
__all__ = [ __all__ = [
"idl" "idl",
"utils" "utils",
"core", "core",
"rpc", "rpc",
"go2", "go2",