Skip to content

Commit

Permalink
et_generator: Resolved pyre errors
Browse files Browse the repository at this point in the history
  • Loading branch information
TaekyungHeo committed Feb 6, 2024
1 parent 2730344 commit 5d315b6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion utils/et_generator/et_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

from chakra.third_party.utils.protolib import encodeMessage as encode_message
from chakra.et_def.et_def_pb2 import (
NodeType as ChakraNodeType,
Node as ChakraNode,
DoubleList,
FloatList,
Expand Down Expand Up @@ -35,7 +36,7 @@

NODE_ID = 0

def get_node(node_name: str, node_type: int) -> ChakraNode:
def get_node(node_name: str, node_type: ChakraNodeType) -> ChakraNode:
global NODE_ID
node = ChakraNode()
node.id = NODE_ID
Expand Down

0 comments on commit 5d315b6

Please sign in to comment.