Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 committed Nov 29, 2023
1 parent 97b8430 commit cb46871
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import signal
import subprocess
import time
from typing import Iterator, Sequence
from typing import Any, Iterator, Sequence

import pytest
import requests
Expand Down Expand Up @@ -390,7 +390,7 @@ def _sanitize_output_file(output_path: pathlib.Path) -> None:
"duration": "<duration>",
}

def _sanitize(obj) -> None:
def _sanitize(obj: Any) -> None:
if isinstance(obj, dict) and "customProperties" in obj:
replacement_props = (
props_process if "run_id" in obj["customProperties"] else props_job
Expand Down

0 comments on commit cb46871

Please sign in to comment.