Skip to content

Commit 96d7d80

Browse files
sshaderConvex, Inc.
authored andcommitted
Ignore lint error surfaced by newer flake8 version (#36002)
There's a new 7.2 version of flake8 (we require ^7) which errors here. Wasn't totally sure what the proper fix was, but wanted to get CI passing again. GitOrigin-RevId: 44f52b74ee990c269505a5632fe384c1f0d3cda2
1 parent 80dcd45 commit 96d7d80

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

npm-packages/convex/scripts/build.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ def build_standalone_cli(temp_dir) -> None:
122122

123123

124124
def main() -> None:
125-
global times
125+
# TODO -- fix lint error below (only shows up on flake8 v7.2.0)
126+
global times # noqa: F824
126127
t0 = time.time()
127128

128129
global TEMP_DIR

0 commit comments

Comments
 (0)