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
As infomation for everyone using the linter while using pyenv, some small fixes are needed because string-bytes path mix-ups. Return paths need to be decoded. So to speak:
in bin/init_linter_git_hooks the return of the function get_git_repo_root needs to be changed to:
returnrepo_root.decode()
in git_hooks.py, the return of the function get_git_repo_root similarly to:
As infomation for everyone using the linter while using pyenv, some small fixes are needed because string-bytes path mix-ups. Return paths need to be decoded. So to speak:
bin/init_linter_git_hooks
the return of the functionget_git_repo_root
needs to be changed to:git_hooks.py
, the return of the functionget_git_repo_root
similarly to:linter.py
, change the return of the functionrun_command_in_folder
to:Maybe this could be permanently fixed in a future release.
The text was updated successfully, but these errors were encountered: