Skip to content

Commit 27fc3bd

Browse files
authored
Merge pull request #20 from ACCESS-NRI/fix-pre-commit
Fix pre-commit
2 parents 7e5725e + 25fbc54 commit 27fc3bd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/accessvis/earth.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
import quaternion as quat
1717
import xarray as xr
1818
from PIL import Image
19+
1920
from .utils import download, is_notebook, pushd
2021

2122
Image.MAX_IMAGE_PIXELS = None
@@ -1426,18 +1427,18 @@ def array_to_rgba(
14261427
if opacity <= 1.0:
14271428
opacity = int(255 * opacity)
14281429
rgba[::, ::, 3] = opacity
1429-
elif opacitymap is True: # ndarrays are incompatible with bool().
1430+
elif opacitymap is True: # ndarrays are incompatible with bool().
14301431
oarray = (array * 255).round().astype(np.uint8)
14311432
rgba[::, ::, 3] = oarray
1432-
elif hasattr(opacitymap, '__array__'): # numpy compatible object
1433+
elif hasattr(opacitymap, "__array__"): # numpy compatible object
14331434
oarray = normalise_array(opacitymap)
14341435
if flip:
14351436
oarray = np.flipud(np.array(oarray))
14361437
if oarray.max() <= 1.0:
14371438
oarray = (oarray * 255).round().astype(np.uint8)
14381439
rgba[::, ::, 3] = oarray
14391440
elif opacitymap:
1440-
raise TypeError('Unknown opacitymap type: Expected bool or ndarray')
1441+
raise TypeError("Unknown opacitymap type: Expected bool or ndarray")
14411442

14421443
return rgba
14431444

0 commit comments

Comments
 (0)