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
Provide a warning if any of the non-lazy gettext functions are used outside of functions and methods. Ie
fromdjango.utils.translationimportgettext# This will be translated with the language active when the module is loaded,# which is probably not what the author intended.FOO=gettext("test") # Should use gettext_lazy
The text was updated successfully, but these errors were encountered:
Provide a warning if any of the non-lazy gettext functions are used outside of functions and methods. Ie
The text was updated successfully, but these errors were encountered: