Skip to content

Commit 06327cf

Browse files
committed
fixup! chore: work around flake not understanding overload
1 parent 38dacfe commit 06327cf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

kazoo/client.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1278,23 +1278,23 @@ def get_async(self, path, watch=None):
12781278
def get_children(
12791279
self,
12801280
path: str,
1281-
) -> List[str]: # noqa: F811
1281+
) -> List[str]: # noqa: F811
12821282
...
12831283

12841284
@overload
12851285
def get_children(
12861286
self,
12871287
path: str,
12881288
watch: WatchListener,
1289-
) -> List[str]: # noqa: F811
1289+
) -> List[str]: # noqa: F811
12901290
...
12911291

12921292
@overload
12931293
def get_children(
12941294
self,
12951295
path: str,
12961296
watch: Optional[WatchListener],
1297-
) -> List[str]: # noqa: F811
1297+
) -> List[str]: # noqa: F811
12981298
...
12991299

13001300
@overload
@@ -1303,7 +1303,7 @@ def get_children(
13031303
path: str,
13041304
watch: Optional[WatchListener],
13051305
include_data: Literal[True],
1306-
) -> List[Tuple[str, ZnodeStat]]: # noqa: F811
1306+
) -> List[Tuple[str, ZnodeStat]]: # noqa: F811
13071307
...
13081308

13091309
@overload
@@ -1312,7 +1312,7 @@ def get_children(
13121312
path: str,
13131313
watch: Optional[WatchListener] = None,
13141314
include_data: Literal[False] = False,
1315-
) -> List[str]: # noqa: F811
1315+
) -> List[str]: # noqa: F811
13161316
...
13171317

13181318
def get_children(

0 commit comments

Comments
 (0)