Skip to content

Commit 8b324fb

Browse files
fix simple errors from flake8
1 parent 78371d0 commit 8b324fb

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

oshconnect/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
# Contact Email: ian@botts-inc.com
66
# ==============================================================================
77

8-
from .oshconnectapi import OSHConnect, Node
9-
from .osh_connect_datamodels import System, Node, Datastream, Observation, ControlChannel
8+
from .oshconnectapi import OSHConnect
9+
from .osh_connect_datamodels import System, Node, Datastream, Observation, ControlChannel

oshconnect/csapi4py/part_2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# import datastreams
44
# import observations
55
# import system_events
6-
# import system_history
6+
# import system_history

oshconnect/datamodels/geometry.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from pydantic import BaseModel, Field
22

33
from oshconnect.csapi4py.constants import GeometryTypes
4-
from shapely import Geometry
54

65

76
# TODO: Add specific validations for each type
@@ -12,4 +11,4 @@ class Geometry(BaseModel):
1211
"""
1312
type: GeometryTypes = Field(...)
1413
coordinates: list
15-
bbox: list = None
14+
bbox: list = None

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
[flake8]
2-
extend-ignore = E501
2+
extend-ignore = E501
3+
exclude = .venv,tests

0 commit comments

Comments
 (0)