Skip to content

Commit

Permalink
Changed GSI module name to CamelCase
Browse files Browse the repository at this point in the history
  • Loading branch information
Prateek Bhustali committed May 23, 2022
1 parent 78ba451 commit f9eec9a
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
from UQpy.run_model.model_execution.PythonModel import PythonModel
from UQpy.distributions import Uniform, Normal
from UQpy.distributions.collection.JointIndependent import JointIndependent
from UQpy.sensitivity.generalised_sobol import GeneralisedSobol
from UQpy.sensitivity.GeneralisedSobol import GeneralisedSobol

# %% [markdown]
# **Define the model and input distributions**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from UQpy.run_model.model_execution.PythonModel import PythonModel
from UQpy.distributions import Uniform, Normal
from UQpy.distributions.collection.JointIndependent import JointIndependent
from UQpy.sensitivity.generalised_sobol import GeneralisedSobol
from UQpy.sensitivity.GeneralisedSobol import GeneralisedSobol

# %% [markdown]
# **Define the model and input distributions**
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/UQpy/sensitivity/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from UQpy.sensitivity.sobol import Sobol
from UQpy.sensitivity.CramervonMises import CramervonMises
from UQpy.sensitivity.Chatterjee import Chatterjee
from UQpy.sensitivity.generalised_sobol import GeneralisedSobol
from UQpy.sensitivity.GeneralisedSobol import GeneralisedSobol

from . import MorrisSensitivity
from . import PceSensitivity
Expand Down
2 changes: 1 addition & 1 deletion tests/unit_tests/sensitivity/test_generalised_sobol.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
from UQpy.run_model.model_execution.PythonModel import PythonModel
from UQpy.distributions import Uniform, Normal
from UQpy.distributions.collection.JointIndependent import JointIndependent
from UQpy.sensitivity.generalised_sobol import GeneralisedSobol
from UQpy.sensitivity.GeneralisedSobol import GeneralisedSobol

# Prepare
###############################################################################
Expand Down

0 comments on commit f9eec9a

Please sign in to comment.