Skip to content

Commit

Permalink
Solve conflicts with main
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiggi committed Feb 7, 2023
1 parent 1b4cdca commit 485bd48
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
11 changes: 9 additions & 2 deletions pyresample/future/spherical/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2022 Pyresample developers
# Copyright (c) 2021 Pyresample developers
#
# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free
Expand All @@ -18,3 +18,10 @@
"""Future features that are backwards incompatible with current functionality."""

from .extent import SExtent # noqa
from .point import SMultiPoint, SPoint # noqa

__all__ = [
"SExtent",
"SPoint",
"SMultiPoint",
]
4 changes: 2 additions & 2 deletions pyresample/test/test_sgeom/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2014-2020 Martin Raspaud
# Copyright (c) 2021 Pyresample developers
#
# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free
Expand All @@ -15,4 +15,4 @@
#
# You should have received a copy of the GNU Lesser General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
"""The test base."""
"""Test for spherical geometries."""

0 comments on commit 485bd48

Please sign in to comment.