Skip to content

Commit

Permalink
fix: Update import statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jsakv committed Jul 12, 2024
1 parent 6685746 commit 6eba23f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pyrorisks/platform_fwi/get_fwi_effis_score.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from datetime import date
import geopandas as gpd
from shapely.geometry import Point, Polygon
from pyro_risks.utils.s3 import S3Bucket
from pyrorisks.utils.s3 import S3Bucket

__all__ = ["get_score"]

Expand Down
4 changes: 2 additions & 2 deletions pyrorisks/platform_fwi/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
from dotenv import load_dotenv

# Pyro Risks Imports
from pyro_risks.utils.fwi_helpers import FWIHelpers
from pyro_risks.utils.s3 import S3Bucket
from pyrorisks.utils.fwi_helpers import FWIHelpers
from pyrorisks.utils.s3 import S3Bucket

BASE_URL = "https://ies-ows.jrc.ec.europa.eu/effis"

Expand Down
4 changes: 2 additions & 2 deletions test/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@

import unittest

import pyro_risks
import pyrorisks


class CoreTester(unittest.TestCase):
# Template unittest
def test_version(self):
self.assertEqual(len(pyro_risks.__version__.split(".")), 3)
self.assertEqual(len(pyrorisks.__version__.split(".")), 3)


if __name__ == "__main__":
Expand Down

0 comments on commit 6eba23f

Please sign in to comment.