Add typing info to EventMetadata
This commit is contained in:
parent
80bad7bf8d
commit
267e02480f
1 changed files with 6 additions and 6 deletions
|
@ -27,12 +27,12 @@ class EventMetadata():
|
|||
|
||||
def __init__(
|
||||
self,
|
||||
event_name,
|
||||
timestamp,
|
||||
cpu_id,
|
||||
procname = None,
|
||||
pid = None,
|
||||
tid = None,
|
||||
event_name: str,
|
||||
timestamp: int,
|
||||
cpu_id: int,
|
||||
procname: str = None,
|
||||
pid: int = None,
|
||||
tid: int = None,
|
||||
) -> None:
|
||||
"""
|
||||
Constructor.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue