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
In init-python.el, it seems that the flymake-ruff package does not "pre-load" (not sure what the correct terminology is here, what i mean is that merely doing require-package does not bind the symbol in the way that an autoloaded function is bound) the variable flymake-ruff-program. Thus, the statement (executable-find flymake-ruff-program) fails every time.
Not sure what a good solution is here; doing (require 'flymake-ruff) would work, but ideally the package shouldn't be loaded at all until the user uses python-mode.
Thanks,
Arthur
The text was updated successfully, but these errors were encountered:
Hi,
In
init-python.el
, it seems that the flymake-ruff package does not "pre-load" (not sure what the correct terminology is here, what i mean is that merely doing require-package does not bind the symbol in the way that an autoloaded function is bound) the variableflymake-ruff-program
. Thus, the statement(executable-find flymake-ruff-program)
fails every time.Not sure what a good solution is here; doing
(require 'flymake-ruff)
would work, but ideally the package shouldn't be loaded at all until the user uses python-mode.Thanks,
Arthur
The text was updated successfully, but these errors were encountered: