Skip to content

Commit 40d74fb

Browse files
committed
Use typing.Iterable not collections.abc.Iterable
1 parent 0e85325 commit 40d74fb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lglpy/android/adb.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,11 @@
2626
line tool which can be used to run commands on a connected Android device.
2727
'''
2828

29-
from collections.abc import Iterable
3029
import os
3130
import shlex
3231
import shutil
3332
import subprocess as sp
34-
from typing import Optional
33+
from typing import Iterable, Optional
3534

3635

3736
class ADBConnect:

0 commit comments

Comments
 (0)