Skip to content

Commit 1bf754d

Browse files
author
Paul V Craven
committed
Ignore flake8 warning
1 parent b26e447 commit 1bf754d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/testapp/application.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def on_track(_event_key, _user_id, _attributes, _event_tags, event):
7575
@app.before_request
7676
def before_request():
7777
global user_profile_service_instance
78-
global optimizely_instance # noqa: F824
78+
global optimizely_instance
7979

8080
user_profile_service_instance = None
8181
optimizely_instance = None
@@ -118,7 +118,7 @@ def before_request():
118118

119119
@app.after_request
120120
def after_request(response):
121-
global optimizely_instance
121+
global optimizely_instance # noqa: F824
122122
global listener_return_maps
123123

124124
optimizely_instance.notification_center.clear_all_notifications()

0 commit comments

Comments
 (0)