Skip to content

Commit

Permalink
Black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dgilman committed Feb 21, 2023
1 parent f1da683 commit a608ffd
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions gspread_asyncio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1632,7 +1632,7 @@ async def copy_range(
source,
dest,
paste_type=paste_type,
paste_orientation=paste_orientation
paste_orientation=paste_orientation,
)

async def cut_range(
Expand Down Expand Up @@ -1791,7 +1791,7 @@ async def find(
query: "Union[str, re.Pattern]",
in_row: Optional[int] = None,
in_column: Optional[int] = None,
case_sensitive: bool = True
case_sensitive: bool = True,
) -> "gspread.Cell":
"""Finds the first cell matching the query. Wraps
:meth:`gspread.Worksheet.find`.
Expand All @@ -1806,7 +1806,11 @@ async def find(
:rtype: :class:`gspread.Cell`
"""
return await self.agcm._call(
self.ws.find, query, in_row=in_row, in_column=in_column, case_sensitive=case_sensitive,
self.ws.find,
query,
in_row=in_row,
in_column=in_column,
case_sensitive=case_sensitive,
)

async def findall(
Expand Down

0 comments on commit a608ffd

Please sign in to comment.