File size: 423 Bytes
9e7b284
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[flake8]
max-line-length = 120

# Exclude the virtual environment, notebooks folder, tests folder, and other unnecessary directories
exclude = 
    .venv,
    __pycache__,
    .git,
    build,
    dist,
    notebooks,
    tests,
    .ipynb_checkpoints,
    .mypy_cache,
    .pytest_cache,
    pytorch_project

ignore = 
    E203,  
    W503,  
    E501,
    E402,
    F401,
    E401

max-complexity = 10
show-source = True