Skip to content

Commit

Permalink
Fixed lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kentandersen committed Jan 8, 2019
1 parent 3b28f07 commit 160a460
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/service.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// @flow
import { getTripPatterns, getStopPlaceDepartures, getStopPlace, getStopPlacesByPosition, findTrips } from './trip'
import {
getTripPatterns, getStopPlaceDepartures, getStopPlace, getStopPlacesByPosition, findTrips,
} from './trip'
import { getBikeRentalStation, getBikeRentalStations } from './bikeRental'
import { getFeatures, getLocationsDEPRECATED } from './geocoder'
import { getServiceConfig } from './config'
Expand Down
4 changes: 3 additions & 1 deletion src/trip/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// @flow
import { post } from '../api'
import { FOOT, BUS, TRAM, RAIL, METRO, WATER, AIR } from '../constants/travelModes'
import {
FOOT, BUS, TRAM, RAIL, METRO, WATER, AIR,
} from '../constants/travelModes'
import {
getItinerariesProps,
getStopPlaceDeparturesProps,
Expand Down

0 comments on commit 160a460

Please sign in to comment.