Skip to content

Commit

Permalink
Remove statis typing for streamz dataframe
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesWalczak committed Jan 22, 2024
1 parent 5a70d03 commit 7ce6244
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/intake_geokube/iot/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def _get_schema(self):
self.stream.start()
return {"stream": str(self.stream)}

def read(self) -> streamz.dataframe.DataFrame:
def read(self):
"""Read IoT data."""
self.log.info("reading stream...")
self._get_schema()
Expand All @@ -113,7 +113,7 @@ def load(self) -> NoReturn:
"loading entire product is not supported for IoT data"
)

def process(self, query: GeoQuery) -> streamz.dataframe.DataFrame:
def process(self, query: GeoQuery):
"""Process IoT data with the passed query.
Parameters
Expand Down

0 comments on commit 7ce6244

Please sign in to comment.