diff options
author | Paul Duffin <paulduffin@google.com> | 2021-02-09 10:43:08 +0000 |
---|---|---|
committer | Paul Duffin <paulduffin@google.com> | 2021-02-09 10:43:08 +0000 |
commit | f16a93c5b27f3e3cd1538fdce7a5a0ae25792fc7 (patch) | |
tree | e77046dd0d6be085d38e40f6016913f7bca3d7a8 /tools/hiddenapi/generate_hiddenapi_lists.py | |
parent | 2019bc53c2a290410482ca84a75ce3b25c26b51a (diff) |
Fix lint errors in tools/hiddenapi
Bug: 177317659
Test: tools/hiddenapi/generate_hiddenapi_lists_test.py
Change-Id: I7fe52319a80d929d43fdec913d2e7f155de96549
Diffstat (limited to 'tools/hiddenapi/generate_hiddenapi_lists.py')
-rwxr-xr-x | tools/hiddenapi/generate_hiddenapi_lists.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/hiddenapi/generate_hiddenapi_lists.py b/tools/hiddenapi/generate_hiddenapi_lists.py index 28ff606d0381..681647548653 100755 --- a/tools/hiddenapi/generate_hiddenapi_lists.py +++ b/tools/hiddenapi/generate_hiddenapi_lists.py @@ -153,7 +153,7 @@ def write_lines(filename, lines): """Writes list of lines into a file, overwriting the file if it exists. Args: - filename (string): Path to the file to be writting into. + filename (string): Path to the file to be writing into. lines (list): List of strings to write into the file. """ lines = map(lambda line: line + '\n', lines) |