Skip to content

Commit

Permalink
Use cached_statepoint in to_dataframe.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaander committed Feb 9, 2024
1 parent e641333 commit 60e76a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion signac/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -2039,7 +2039,7 @@ def _export_sp_and_doc(job):
tuple with prefixed state point or document key and values.
"""
for key, value in _flatten(job.statepoint).items():
for key, value in _flatten(job.cached_statepoint).items():
prefixed_key = sp_prefix + key
if usecols(prefixed_key):
yield prefixed_key, value
Expand Down

0 comments on commit 60e76a2

Please sign in to comment.