Skip to content

Commit

Permalink
fix credo issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lukad committed May 19, 2024
1 parent e91920b commit 77f47ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions lib/radiator/outline/event_consumer.ex
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ defmodule Radiator.Outline.EventConsumer do
use GenStage

alias Radiator.EventStore
alias Radiator.Outline.NodeRepository
alias Radiator.Outline
alias Radiator.Outline.Command.{ChangeNodeContentCommand, InsertNodeCommand, DeleteNodeCommand}
alias Radiator.Outline.Command.{ChangeNodeContentCommand, DeleteNodeCommand, InsertNodeCommand}
alias Radiator.Outline.Dispatch
alias Radiator.Outline.Event.{NodeContentChangedEvent, NodeInsertedEvent, NodeDeletedEvent}
alias Radiator.Outline.Event.{NodeContentChangedEvent, NodeDeletedEvent, NodeInsertedEvent}
alias Radiator.Outline.NodeRepository

require Logger

Expand Down
2 changes: 1 addition & 1 deletion lib/radiator_web/live/episode_live/index.ex
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule RadiatorWeb.EpisodeLive.Index do
use RadiatorWeb, :live_view

alias Radiator.Outline.{Dispatch, NodeRepository}
alias Radiator.Outline.Event.{NodeContentChangedEvent, NodeInsertedEvent, NodeDeletedEvent}
alias Radiator.Outline.Event.{NodeContentChangedEvent, NodeDeletedEvent, NodeInsertedEvent}
alias Radiator.Podcast

@impl true
Expand Down

0 comments on commit 77f47ce

Please sign in to comment.