Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
Change-Id: I005e30219f49830f73658488e58588d6ed7ccd88
  • Loading branch information
MarkDaoust committed May 21, 2024
1 parent 7b892f8 commit bd444de
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import collections
import datetime
import os
from typing import Iterable
from typing import Iterable, Union
import pathlib

import google
Expand All @@ -37,11 +37,11 @@ def __init__(self, test):

def create_file(
self,
path: str | pathlib.Path | os.PathLike,
path: Union[str, pathlib.Path, os.PathLike],
*,
mime_type: str | None = None,
name: str | None = None,
display_name: str | None = None,
mime_type: Union[str, None] = None,
name: Union[str, None] = None,
display_name: Union[str, None] = None,
resumable: bool = True,
) -> glm.File:
self.observed_requests.append(
Expand Down

0 comments on commit bd444de

Please sign in to comment.