-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Improve code readability and reducing code duplications (#127)
* refactor: Improve code readability and reducing code duplications - Using tuples to reperesent the non-diagonal elements via dictionary * feat: Update poetry-core version and add pytest configuration with new tests for LigandFieldTheory * test: Mark eigensolver_invalid_input test as expected failure due to unimplemented functionality * chore: 🗃️ Moving test file * chore: Clean up configuration files and update changelog formatting * refactor: Improve test readability by formatting and organizing parameterized tests * style: Format code for improved readability by adjusting line breaks and spacing * fix: Correct comment from 'd3' to 'd2' for clarity in batch processing logic * chore: Update pyproject.toml for improved dependency formatting and linting rules * refactor: Enhance type hinting and improve code readability in tools and test files * style: Improve docstring formatting and add missing method descriptions in matrices.py
- Loading branch information
Showing
13 changed files
with
983 additions
and
1,229 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,3 @@ updates: | |
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""tanabesugano: A Python package for Tanabe-Sugano diagrams.""" | ||
|
||
from __future__ import annotations | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.