Skip to content

Commit

Permalink
Add support .fcidump extension
Browse files Browse the repository at this point in the history
  • Loading branch information
tovrstra committed Jul 9, 2024
1 parent decf6eb commit 73ff61a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion iodata/formats/fcidump.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
__all__ = ()


PATTERNS = ["*FCIDUMP*"]
PATTERNS = ["*FCIDUMP*", "*.fcidump"]


LOAD_ONE_NOTES = """
Expand Down
2 changes: 1 addition & 1 deletion iodata/test/test_fcidump.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def test_dump_load_fcidimp_consistency_ao(tmpdir):
mol0.two_ints = {"two_mo": np.load(str(fn))}

# Dump to a file and load it again
fn_tmp = os.path.join(tmpdir, "FCIDUMP")
fn_tmp = os.path.join(tmpdir, "tmp.fcidump")
dump_one(mol0, fn_tmp)
mol1 = load_one(fn_tmp)

Expand Down

0 comments on commit 73ff61a

Please sign in to comment.