Fix mypy errors (#4)
Signed-off-by: Christophe Bedard <christophe.bedard@apex.ai>
This commit is contained in:
parent
f1e1500862
commit
d4ff095a1b
1 changed files with 3 additions and 3 deletions
|
@ -41,9 +41,9 @@ class EventMetadata():
|
|||
event_name: str,
|
||||
timestamp: int,
|
||||
cpu_id: int,
|
||||
procname: str = None,
|
||||
pid: int = None,
|
||||
tid: int = None,
|
||||
procname: Optional[str] = None,
|
||||
pid: Optional[int] = None,
|
||||
tid: Optional[int] = None,
|
||||
) -> None:
|
||||
"""
|
||||
Create an EventMetadata.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue