Skip to content

Commit

Permalink
style(types): change type order (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrsmrynk authored Apr 26, 2024
1 parent 76a4a1c commit d4f8d77
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/utils/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
YMin = int


class GeospatialFilterMode(Enum):
DIFFERENCE = 'difference'
INTERSECTION = 'intersection'


class InterpolationMode(Enum):
BILINEAR = 'bilinear'
NEAREST = 'nearest'
Expand All @@ -33,11 +38,6 @@ def to_rio(self):
return mapping[self]


class GeospatialFilterMode(Enum):
DIFFERENCE = 'difference'
INTERSECTION = 'intersection'


class SetFilterMode(Enum):
DIFFERENCE = 'difference'
INTERSECTION = 'intersection'
Expand Down

0 comments on commit d4f8d77

Please sign in to comment.