We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ade3e05 commit 4440b68Copy full SHA for 4440b68
utils/run-unasync.py
@@ -45,14 +45,10 @@ def main():
45
Path(__file__).absolute().parent.parent / "elasticsearch/_async"
46
):
47
for filename in filenames:
48
- if (
49
- filename.rpartition(".")[-1]
50
- in (
51
- "py",
52
- "pyi",
53
- )
54
- and not filename.startswith("utils.py")
55
- ):
+ if filename.rpartition(".")[-1] in (
+ "py",
+ "pyi",
+ ) and not filename.startswith("utils.py"):
56
filepaths.append(os.path.join(root, filename))
57
58
unasync.unasync_files(filepaths, rules)
0 commit comments