Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
Replace tabs with spaces.
  • Loading branch information
Glutexo committed Oct 21, 2023
1 parent 8cf202e commit 7223f36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/onigumo/parser.ex
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ defmodule Onigumo.Parser do

def main(root_path) do
root_path
|> list_downloaded()
|> list_downloaded()
|> Enum.map(&IO.puts(&1))
end

defp list_downloaded(path) do
path
path
|> File.ls!()
|> Enum.filter(&is_downloaded(&1))
|> Enum.filter(&is_downloaded(&1))
end

defp is_downloaded(path) do
Expand Down

0 comments on commit 7223f36

Please sign in to comment.