Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
[flake8]
# E226: whitespace around operators which can look ugly, IMO
# W503 and W504 can be contradictory: linebreaks before/after binary operators
ignore = E226, W503, W504, E203
# same width as GH editor
max-line-length = 127
# these files are either autogenerated or no longer maintained
exclude =
./docs
./matador/plugins/*
castep_params
scripts/plot_convergence_old
# ignore star imports in chem utils that bring in all constants
per-file-ignores =
matador/utils/chem_utils.py:F405