Skip to content

Commit 8c42a39

Browse files
committed
chore: work around flake not understanding overload
1 parent 8a231b4 commit 8c42a39

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

kazoo/client.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1275,30 +1275,30 @@ 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,
12811281
) -> List[str]:
12821282
...
12831283

12841284
@overload
1285-
def get_children(
1285+
def get_children( # noqa: F811
12861286
self,
12871287
path: str,
12881288
watch: WatchListener,
12891289
) -> 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],
12971297
) -> 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],
@@ -1307,15 +1307,15 @@ def get_children(
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,
13151315
) -> List[str]:
13161316
...
13171317

1318-
def get_children(
1318+
def get_children( # noqa: F811
13191319
self,
13201320
path: str,
13211321
watch: Optional[WatchListener] = None,

0 commit comments

Comments
 (0)