Skip to content

Commit f6221b7

Browse files
authored
[CI] Fix pre-commit black-jupyter failure and drop stale First Interaction badge (#2967)
1 parent 4789cc9 commit f6221b7

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
[![Docker image build](https://github.com/apache/sedona/actions/workflows/docker-build.yml/badge.svg)](https://github.com/apache/sedona/actions/workflows/docker-build.yml)
2424
[![Docs build](https://github.com/apache/sedona/actions/workflows/docs.yml/badge.svg)](https://github.com/apache/sedona/actions/workflows/docs.yml)
2525
[![Example project build](https://github.com/apache/sedona/actions/workflows/example.yml/badge.svg)](https://github.com/apache/sedona/actions/workflows/example.yml)
26-
[![First Interaction Workflow Status](https://github.com/apache/sedona/actions/workflows/first-interaction.yml/badge.svg)](https://github.com/apache/sedona/actions/workflows/first-interaction.yml)
2726
[![Manual Hooks Workflow Status](https://github.com/apache/sedona/actions/workflows/pre-commit-manual.yml/badge.svg)](https://github.com/apache/sedona/actions/workflows/pre-commit-manual.yml)
2827
[![Pre-commit Workflow Status](https://github.com/apache/sedona/actions/workflows/pre-commit.yml/badge.svg)](https://github.com/apache/sedona/actions/workflows/pre-commit.yml)
2928
[![Python build](https://github.com/apache/sedona/actions/workflows/python.yml/badge.svg)](https://github.com/apache/sedona/actions/workflows/python.yml)

python/sedona/spark/raster/sedona_raster.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,9 +258,7 @@ def with_bands(self, new_data: np.ndarray) -> "SedonaRaster":
258258
259259
Only supported on InDbSedonaRaster.
260260
"""
261-
raise TypeError(
262-
f"with_bands() is not supported on {type(self).__name__}."
263-
)
261+
raise TypeError(f"with_bands() is not supported on {type(self).__name__}.")
264262

265263
def __enter__(self):
266264
return self

0 commit comments

Comments
 (0)