Skip to content

Commit

Permalink
fix: simple import typing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-sentry committed Nov 13, 2024
1 parent 8be381b commit ff6125d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions codecov_cli/services/report/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json
import logging
import time
from typing import Union
import typing

import requests

Expand All @@ -28,7 +28,7 @@ def create_report_logic(
enterprise_url: str,
pull_request_number: int,
fail_on_error: bool = False,
args: Union[dict, None] = None,
args: typing.Union[dict, None] = None,
):
encoded_slug = encode_slug(slug)
sending_result = send_create_report_request(
Expand Down Expand Up @@ -73,7 +73,7 @@ def create_report_results_logic(
token: typing.Optional[str],
enterprise_url: str,
fail_on_error: bool = False,
args: Union[dict, None] = None,
args: typing.Union[dict, None] = None,
):
encoded_slug = encode_slug(slug)
sending_result = send_reports_result_request(
Expand Down

0 comments on commit ff6125d

Please sign in to comment.