OS: Windows 10 21H2
Python: Python 3.10.4
Steps:
- pip install "click<7"
- pip install pyquotes
example.py
pyquotes --check example.py
pyquotes -D --check example.py
Both fail with the error
File "C:\Python310\lib\site-packages\pyquotes\settings.py", line 96, in __init__
super().__init__(**settings, project_root=project_root)
TypeError: _Config.__init__() got an unexpected keyword argument 'check'
This is resolved when using click>=8.
Thank you for your time, this library has saved my many hours.
OS: Windows 10 21H2
Python: Python 3.10.4
Steps:
example.py
pyquotes --check example.py
pyquotes -D --check example.py
Both fail with the error
This is resolved when using
click>=8.Thank you for your time, this library has saved my many hours.