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
❯ dvc versionDVC version: 1.8.4+e1e2a4---------------------------------Platform: Python 3.8.6 on Linux-4.19.128-microsoft-standard-x86_64-with-glibc2.32Supports: All remotesCache types: hardlink, symlinkCache directory: ext4 on /dev/sdbWorkspace directory: ext4 on /dev/sdbRepo: dvc, git
Note: This should also happen in 1.9.0 since it doesn't have to do with dvc itself but with flake-comprehensions, I just happen to be working in 1.8.4 at the moment.
Additional Information (if any):
flake-comprehensions reverted a change and is now flagging all dict calls with keyword arguments (e.g. dict(a=value, another=value)). See commit here: adamchainz/flake8-comprehensions@b1cfd5a. This is causing linting failures in all recent PRs and should keep happening since the offending lines are in master branch. See a few examples:
Bug Report
Please provide information about your setup
Output of
dvc version
:Note: This should also happen in 1.9.0 since it doesn't have to do with
dvc
itself but withflake-comprehensions
, I just happen to be working in 1.8.4 at the moment.Additional Information (if any):
flake-comprehensions
reverted a change and is now flagging alldict
calls with keyword arguments (e.g.dict(a=value, another=value)
). See commit here: adamchainz/flake8-comprehensions@b1cfd5a. This is causing linting failures in all recent PRs and should keep happening since the offending lines are inmaster
branch. See a few examples:Best solution, afaik, would be to execute the suggested changes and replace
dict
calls with literals.The text was updated successfully, but these errors were encountered: