Skip to content

Commit

Permalink
Fix DetectSymmetries
Browse files Browse the repository at this point in the history
  • Loading branch information
singularitti committed Nov 19, 2023
1 parent b9df6d9 commit 0398dbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/EquationOfStateWorkflow/actions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ using ExpressBase:
WriteInput
using ExpressBase.Config: _uparse
using ExpressBase.Files: save, load, extension
using Spglib: get_dataset
using Spglib: SpglibCell, get_dataset
using Unitful: Pressure, Volume
using UnitfulParsableString: string

Expand Down Expand Up @@ -62,7 +62,7 @@ end
struct DetectSymmetries{T} <: Action{T}
calculation::T
end
(::DetectSymmetries)(cell) = get_dataset(cell)
(::DetectSymmetries)(cell) = get_dataset(SpglibCell(cell))

struct GatherData{T} <: Action{T}
calculation::T
Expand Down

0 comments on commit 0398dbe

Please sign in to comment.