Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove duplicate imports #5

Merged
merged 1 commit into from
Jun 9, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions src/Main.elm
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,13 @@ import Page.NotFound as NotFound
import Page.Article.Editor as Editor
import Page.Errored as Errored exposing (PageLoadError)
import Views.Page as Page exposing (ActivePage)
import Data.User as User exposing (User)
import Json.Decode as Decode exposing (Value)
import Navigation
import Task
import Util exposing ((=>))
import Route exposing (Route)
import Json.Decode as Decode
import Data.User as User exposing (User, Username)
import Data.Article exposing (Slug)
import Data.Session as Session exposing (Session)
import Html exposing (..)
import Route exposing (Route)
import Html


-- WARNING: this whole file will become unnecessary and go away in Elm 0.19,
Expand Down
1 change: 0 additions & 1 deletion src/Views/Errors.elm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ module Views.Errors exposing (view)
import Html exposing (..)
import Html.Attributes exposing (class, style)
import Html.Events exposing (onClick)
import Html
import Util exposing ((=>))


Expand Down
3 changes: 0 additions & 3 deletions src/Views/Page.elm
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,11 @@ module Views.Page exposing (frame, ActivePage(..), bodyId)
{-| The frame around a typical page - that is, the header and footer.
-}

import Route exposing (Route)
import Route exposing (Route)
import Html exposing (..)
import Html.Attributes exposing (..)
import Route exposing (Route)
import Data.User as User exposing (User, Username)
import Data.UserPhoto as UserPhoto exposing (UserPhoto)
import Html
import Html.Lazy exposing (lazy2)
import Views.Spinner exposing (spinner)
import Util exposing ((=>))
Expand Down