We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 817843f commit e91ae10Copy full SHA for e91ae10
lib/cadet/jobs/xml_parser.ex
@@ -316,15 +316,15 @@ defmodule Cadet.Updater.XMLParser do
316
end)
317
318
library_entity
319
- |> xpath(
320
- ~x"."e,
321
- chapter: ~x"./@chapter"i,
322
- exec_time_ms: ~x"./@exectime"oi,
323
- variant: ~x"./@variant"os
324
- )
325
- |> Map.put(:globals, globals)
326
- |> Map.put(:external, external)
327
- |> Map.put(:language_options, options_map)
+ |> xpath(
+ ~x"."e,
+ chapter: ~x"./@chapter"i,
+ exec_time_ms: ~x"./@exectime"oi,
+ variant: ~x"./@variant"os
+ )
+ |> Map.put(:globals, globals)
+ |> Map.put(:external, external)
+ |> Map.put(:language_options, options_map)
328
end
329
330
@spec process_charlist(charlist() | nil) :: String.t() | nil
0 commit comments