Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

setup.cfg 570 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  1. [bdist_wheel]
  2. universal=1
  3. [metadata]
  4. license_files = LICENSE
  5. [pep8]
  6. max-line-length = 120
  7. [flake8]
  8. # note: we ignore all 501s (line too long) anyway as they're taken care of by black
  9. max-line-length = 120
  10. ignore = E203, E402, W503, W504, F821, E501, B, C4, EXE
  11. per-file-ignores =
  12. __init__.py: F401, F403, F405
  13. ./hubconf.py: F401
  14. torchvision/models/mobilenet.py: F401, F403
  15. torchvision/models/quantization/mobilenet.py: F401, F403
  16. test/smoke_test.py: F401
  17. exclude = venv
  18. [pydocstyle]
  19. select = D417 # Missing argument descriptions in the docstring
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...