Skip to content

Commit

Permalink
hlint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahCardoso committed Jun 18, 2024
1 parent 0e13e04 commit c20e033
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ getConstantsCls chs cs = cnCls (constStructure $ dataInfo chs) (inputStructure $
where cnCls (Store Bundled) _ = zipCs Constants
cnCls WithInputs Bundled = zipCs InputParameters
cnCls _ _ = []
zipCs ic = zip (map codeName cs) $ repeat (icNames chs ic)
zipCs ic = map (, icNames chs ic) (map codeName cs)

-- | Get derived input functions (for @derived_values@).
-- If there are no derived inputs, a derived inputs function is not generated.
Expand Down

0 comments on commit c20e033

Please sign in to comment.