Skip to content

Commit c96f71f

Browse files
authored
Mute incorrect pytype warning regarding adb_logcat_file_path (#975)
1 parent 8b84c67 commit c96f71f

File tree

1 file changed

+1
-1
lines changed
  • mobly/controllers/android_device_lib/services

1 file changed

+1
-1
lines changed

mobly/controllers/android_device_lib/services/logcat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def _open_logcat_file(self):
200200
)
201201
time.sleep(1)
202202
self._adb_logcat_file_obj = open(
203-
self.adb_logcat_file_path,
203+
self.adb_logcat_file_path, # pytype: disable=wrong-arg-types
204204
'r',
205205
encoding='utf-8',
206206
errors='replace',

0 commit comments

Comments
 (0)