We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While preparing the conda feedstock for mess, @FNTwin noticed that we use the tabulate package but don't actually include it in our dependencies:
mess/mess/basis.py
Line 11 in 80a338d
The only usage is to give the Basis::__repr__ method some formatting. It turns out this is only ever seen in non-html terminals for example:
Basis::__repr__
>>> from mess.basis import basisset >>> from mess.structure import Structure >>> mol = Structure(atomic_number=1, position=(0,0,0)) >>> basisset(mol) primitive orbital coefficient norm center lmn alpha ----------- --------- ------------- -------- ---------- ------- -------- 0 0 0.154329 1.79444 [0. 0. 0.] [0 0 0] 3.42525 1 0 0.535328 0.500326 [0. 0. 0.] [0 0 0] 0.623914 2 0 0.444635 0.187735 [0. 0. 0.] [0 0 0] 0.168855
tabulate is what puts the --- in the column header.
---
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
While preparing the conda feedstock for mess, @FNTwin noticed that we use the tabulate package but don't actually include it in our dependencies:
mess/mess/basis.py
Line 11 in 80a338d
The only usage is to give the
Basis::__repr__
method some formatting. It turns out this is only ever seen in non-html terminals for example:tabulate is what puts the
---
in the column header.The text was updated successfully, but these errors were encountered: