Skip to content

Commit ee3b551

Browse files
committed
Ignore F821 for global app variable
1 parent 540b6eb commit ee3b551

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/senaite/core/scripts/_reindex.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ def run(app):
6565

6666

6767
if __name__ == "__main__":
68-
run(app)
68+
run(app) # noqa: F821

src/senaite/core/scripts/_upgrade_sites.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ def run(app):
7272

7373

7474
if __name__ == "__main__":
75-
run(app)
75+
run(app) # noqa: F821

src/senaite/core/scripts/_zope_passwd.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ def run(app):
3232

3333

3434
if __name__ == "__main__":
35-
run(app)
35+
run(app) # noqa: F821

0 commit comments

Comments
 (0)