Skip to content

Commit 485bd48

Browse files
committed
Solve conflicts with main
1 parent 1b4cdca commit 485bd48

2 files changed

Lines changed: 11 additions & 4 deletions

File tree

pyresample/future/spherical/__init__.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#!/usr/bin/env python3
1+
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33
#
4-
# Copyright (c) 2022 Pyresample developers
4+
# Copyright (c) 2021 Pyresample developers
55
#
66
# This program is free software: you can redistribute it and/or modify it under
77
# the terms of the GNU Lesser General Public License as published by the Free
@@ -18,3 +18,10 @@
1818
"""Future features that are backwards incompatible with current functionality."""
1919

2020
from .extent import SExtent # noqa
21+
from .point import SMultiPoint, SPoint # noqa
22+
23+
__all__ = [
24+
"SExtent",
25+
"SPoint",
26+
"SMultiPoint",
27+
]

pyresample/test/test_sgeom/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33
#
4-
# Copyright (c) 2014-2020 Martin Raspaud
4+
# Copyright (c) 2021 Pyresample developers
55
#
66
# This program is free software: you can redistribute it and/or modify it under
77
# the terms of the GNU Lesser General Public License as published by the Free
@@ -15,4 +15,4 @@
1515
#
1616
# You should have received a copy of the GNU Lesser General Public License along
1717
# with this program. If not, see <http://www.gnu.org/licenses/>.
18-
"""The test base."""
18+
"""Test for spherical geometries."""

0 commit comments

Comments
 (0)