Skip to content

Commit 4298ad8

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

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

kazoo/client.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1275,44 +1275,44 @@ def get_async(self, path, watch=None):
12751275
return async_result
12761276

12771277
@overload
1278-
def get_children(
1278+
def get_children( # noqa: F811
12791279
self,
12801280
path: str,
1281-
) -> List[str]: # noqa: F811
1281+
) -> List[str]:
12821282
...
12831283

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

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

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

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

13181318
def get_children(

0 commit comments

Comments
 (0)