Skip to content

Commit

Permalink
minor formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
print-sid8 committed Jan 14, 2025
1 parent 98ed507 commit 3cb0645
Show file tree
Hide file tree
Showing 14 changed files with 28 additions and 29 deletions.
4 changes: 2 additions & 2 deletions src/rasteret/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'''
"""
Copyright 2025 Terrafloww Labs, Inc
Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -12,7 +12,7 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'''
"""

"""Rasteret package."""

Expand Down
4 changes: 2 additions & 2 deletions src/rasteret/cloud.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'''
"""
Copyright 2025 Terrafloww Labs, Inc
Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -12,7 +12,7 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'''
"""

""" Utilities for cloud storage """

Expand Down
4 changes: 2 additions & 2 deletions src/rasteret/constants.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'''
"""
Copyright 2025 Terrafloww Labs, Inc
Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -12,7 +12,7 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'''
"""

"""Constants and configurations for rasteret."""

Expand Down
4 changes: 2 additions & 2 deletions src/rasteret/core/collection.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'''
"""
Copyright 2025 Terrafloww Labs, Inc
Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -12,7 +12,7 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'''
"""

""" Collection class for managing raster data collections. """

Expand Down
4 changes: 2 additions & 2 deletions src/rasteret/core/processor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'''
"""
Copyright 2025 Terrafloww Labs, Inc
Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -12,7 +12,7 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'''
"""

"""
Rasteret: Efficient satellite imagery retrieval and processing
Expand Down
4 changes: 2 additions & 2 deletions src/rasteret/core/scene.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'''
"""
Copyright 2025 Terrafloww Labs, Inc
Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -12,7 +12,7 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'''
"""

""" Scene class for handling COG data loading and processing. """

Expand Down
4 changes: 2 additions & 2 deletions src/rasteret/core/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'''
"""
Copyright 2025 Terrafloww Labs, Inc
Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -12,7 +12,7 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'''
"""

""" Utility functions for rasteret package. """

Expand Down
4 changes: 2 additions & 2 deletions src/rasteret/fetch/cog.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'''
"""
Copyright 2025 Terrafloww Labs, Inc
Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -12,7 +12,7 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'''
"""

"""Optimized COG reading using byte ranges."""

Expand Down
4 changes: 2 additions & 2 deletions src/rasteret/logging.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'''
"""
Copyright 2025 Terrafloww Labs, Inc
Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -12,7 +12,7 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'''
"""

""" Logging configuration for the rasteret package. """

Expand Down
4 changes: 2 additions & 2 deletions src/rasteret/stac/indexer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'''
"""
Copyright 2025 Terrafloww Labs, Inc
Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -12,7 +12,7 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'''
"""

""" Indexer for creating GeoParquet collections from STAC catalogs. """

Expand Down
4 changes: 2 additions & 2 deletions src/rasteret/stac/parser.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'''
"""
Copyright 2025 Terrafloww Labs, Inc
Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -12,7 +12,7 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'''
"""

"""Async COG header parsing with caching."""

Expand Down
4 changes: 2 additions & 2 deletions src/rasteret/tests/test_cloud_provider.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'''
"""
Copyright 2025 Terrafloww Labs, Inc
Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -12,7 +12,7 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'''
"""

import unittest
from unittest.mock import patch, MagicMock
Expand Down
4 changes: 2 additions & 2 deletions src/rasteret/tests/test_stac_indexer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'''
"""
Copyright 2025 Terrafloww Labs, Inc
Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -12,7 +12,7 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'''
"""

import unittest
from unittest.mock import patch, MagicMock, AsyncMock
Expand Down
5 changes: 2 additions & 3 deletions src/rasteret/types.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'''
"""
Copyright 2025 Terrafloww Labs, Inc
Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -12,8 +12,7 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'''

"""

"""Type definitions used throughout Rasteret."""

Expand Down

0 comments on commit 3cb0645

Please sign in to comment.