-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixing more MyPy and PyLint issues * Added logging to report definition warnings and errors * Normalized loading LrpcDef from various sources
- Loading branch information
tzijnge
committed
Oct 10, 2024
1 parent
f49d2f3
commit c516922
Showing
28 changed files
with
350 additions
and
296 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from .encoder import lrpc_encode | ||
from .decoder import lrpc_decode | ||
from .decoder import LrpcDecoder | ||
from .lrpc_client import LrpcClient | ||
from .client_cli_visitor import ClientCliVisitor | ||
from .encoder import lrpc_encode as lrpc_encode | ||
from .decoder import lrpc_decode as lrpc_decode | ||
from .decoder import LrpcDecoder as LrpcDecoder | ||
from .lrpc_client import LrpcClient as LrpcClient | ||
from .client_cli_visitor import ClientCliVisitor as ClientCliVisitor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from .constants import ConstantsFileVisitor | ||
from .enum import EnumFileVisitor | ||
from .server_include import ServerIncludeVisitor | ||
from .service_include import ServiceIncludeVisitor | ||
from .service_shim import ServiceShimVisitor | ||
from .struct import StructFileVisitor | ||
from .constants import ConstantsFileVisitor as ConstantsFileVisitor | ||
from .enum import EnumFileVisitor as EnumFileVisitor | ||
from .server_include import ServerIncludeVisitor as ServerIncludeVisitor | ||
from .service_include import ServiceIncludeVisitor as ServiceIncludeVisitor | ||
from .service_shim import ServiceShimVisitor as ServiceShimVisitor | ||
from .struct import StructFileVisitor as StructFileVisitor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from .var import LrpcVar, LrpcVarDict | ||
from .enum import LrpcEnum, LrpcEnumField, LrpcEnumDict | ||
from .struct import LrpcStruct, LrpcStructDict | ||
from .constant import LrpcConstant, LrpcConstantDict | ||
from .function import LrpcFun, LrpcFunDict | ||
from .service import LrpcService, LrpcServiceDict | ||
from .definition import LrpcDef | ||
from .var import LrpcVar as LrpcVar, LrpcVarDict as LrpcVarDict | ||
from .enum import LrpcEnum as LrpcEnum, LrpcEnumField as LrpcEnumField, LrpcEnumDict as LrpcEnumDict | ||
from .struct import LrpcStruct as LrpcStruct, LrpcStructDict as LrpcStructDict | ||
from .constant import LrpcConstant as LrpcConstant, LrpcConstantDict as LrpcConstantDict | ||
from .function import LrpcFun as LrpcFun, LrpcFunDict as LrpcFunDict | ||
from .service import LrpcService as LrpcService, LrpcServiceDict as LrpcServiceDict | ||
from .definition import LrpcDef as LrpcDef, LrpcDefDict as LrpcDefDict |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
from .load import load_lrpc_schema | ||
from .load import load_lrpc_schema as load_lrpc_schema |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
from .load_definition import load_lrpc_def | ||
from .load_definition import load_lrpc_def_from_url as load_lrpc_def_from_url | ||
from .load_definition import load_lrpc_def_from_str as load_lrpc_def_from_str | ||
from .load_definition import load_lrpc_def_from_dict as load_lrpc_def_from_dict | ||
from .load_definition import load_lrpc_def_from_file as load_lrpc_def_from_file |
Oops, something went wrong.