Skip to content

Commit

Permalink
backend/services/mapillary_service: Fix lint issue
Browse files Browse the repository at this point in the history
Signed-off-by: Taylor Smock <[email protected]>
  • Loading branch information
tsmock committed Jun 16, 2021
1 parent 9a9a76f commit 85a9fbd
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions backend/services/mapillary_service.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
import json
import datetime
import requests
import asyncio
from contextlib import closing
from concurrent.futures import ThreadPoolExecutor
from shapely.geometry import shape, mapping, LineString, Point
from shapely.geometry import shape, mapping, LineString
from shapely.ops import linemerge
import xml.etree.ElementTree as ET
from backend.models.postgis.task import Task
import os
import math
import mapbox_vector_tile
from typing import List, Optional, Any, Generator, Tuple, Set, Union
from typing import List, Optional, Any, Generator, Tuple, Set
import geojson
from flask import current_app
from enum import IntFlag
Expand Down Expand Up @@ -175,7 +172,6 @@ def set_geometry(self, geom):
for coord in f["geometry"]["coordinates"]:
tile_geom.append(
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": coord,
Expand Down

0 comments on commit 85a9fbd

Please sign in to comment.