Commit d78b796
pylint: remove
Summary:
This is a Google-specific lint that we kind of just cargo cult around
and don’t actually lint against in CI, which makes it less than useful.
Generated with:
```
git ls-files -z '*.py' |
xargs -0 sed -i \
-e 's/g-import-not-at-top,//' \
-e 's/,g-import-not-at-top//' \
-e 's/ *# pylint:.*=g-import-not-at-top$//' \
;
```
Note: This cherry-pick only includes files under tensorboard/uploader
28 files from the original commit were omitted.
Test Plan:
Our standard lint still passes:
```
$ flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
0
```
wchargin-branch: unsuppress-nontop-importsg-import-not-at-top suppressions (#3022)1 parent 5dc9983 commit d78b796
File tree
3 files changed
+6
-6
lines changed- tensorboard/uploader
3 files changed
+6
-6
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
31 | | - | |
| 31 | + | |
32 | 32 | | |
33 | | - | |
| 33 | + | |
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | | - | |
| 31 | + | |
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | | - | |
| 31 | + | |
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
| |||
0 commit comments