Skip to content

Commit

Permalink
Add missing key to CifData namedtuple
Browse files Browse the repository at this point in the history
  • Loading branch information
janbridley committed May 22, 2024
1 parent cc23120 commit 75f8c3e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
data_file_path = os.path.dirname(__file__) + "/sample_data/"


CifData = namedtuple("CifData", ["filename", "symop_keys", "atom_site_keys"])
CifData = namedtuple(
"CifData", ["filename", "symop_keys", "atom_site_keys", "single_value_keys"]
)

# Assorted keys to select from
assorted_keys = np.loadtxt(data_file_path + "cif_file_keys.txt", dtype=str)
Expand Down

0 comments on commit 75f8c3e

Please sign in to comment.