Skip to content

Commit

Permalink
refactor: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
12rambau committed Jan 28, 2024
1 parent 7e33978 commit 206f123
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_deprecated.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
"""Test all the deprecated methods that have not been kept in the new implementation"""
"""Test all the deprecated methods that have not been kept in the new implementation."""

import pytest

import geetools


class TestVizualisation:
"""Test methods from the deprecated_visualization module"""
"""Test methods from the deprecated_visualization module."""

def test_stretch_std(self):
with pytest.raises(NotImplementedError):
Expand All @@ -14,4 +15,3 @@ def test_stretch_std(self):
def test_stretch_percentile(self):
with pytest.raises(NotImplementedError):
geetools.visualization.stretch_percentile(None, None)

0 comments on commit 206f123

Please sign in to comment.