Skip to content

Commit 3d7599b

Browse files
committed
Address warning
1 parent abe6580 commit 3d7599b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/vendored.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
def remove_all(paths):
99
for path in paths:
10-
path.rmtree() if path.isdir() else path.remove()
10+
path.rmtree() if path.is_dir() else path.remove()
1111

1212

1313
def update_vendored():

0 commit comments

Comments
 (0)