You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The modRequest variable in line 76 is in the global scope, which shouldn't break the functionality of the worker, but in my opinion it'd be safer to make it local by putting a const keyword before it.
The text was updated successfully, but these errors were encountered:
gists/b2AuthorizeCfWorker.py
Lines 69 to 82 in b5a73fe
The
modRequest
variable in line76
is in the global scope, which shouldn't break the functionality of the worker, but in my opinion it'd be safer to make it local by putting aconst
keyword before it.The text was updated successfully, but these errors were encountered: