diff options
author | Aki <please@ignore.pl> | 2022-09-08 18:01:35 +0200 |
---|---|---|
committer | Aki <please@ignore.pl> | 2022-09-08 18:01:49 +0200 |
commit | accc352e3fdc9e264e6055466c4c55a6bd352400 (patch) | |
tree | d3848dca81dd60a477f34830aa35ddbecc814b74 | |
parent | 69ae90ca12795108caf6ed93dacfadd75bcb3208 (diff) | |
download | szilagyi-accc352e3fdc9e264e6055466c4c55a6bd352400.zip szilagyi-accc352e3fdc9e264e6055466c4c55a6bd352400.tar.gz szilagyi-accc352e3fdc9e264e6055466c4c55a6bd352400.tar.bz2 |
Marked nomogram module as private
-rw-r--r-- | szilagyi/__init__.py | 2 | ||||
-rw-r--r-- | szilagyi/_nomogram.py (renamed from szilagyi/nomogram.py) | 0 | ||||
-rw-r--r-- | szilagyi/plots.py | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/szilagyi/__init__.py b/szilagyi/__init__.py index ce6e840..5f365e1 100644 --- a/szilagyi/__init__.py +++ b/szilagyi/__init__.py @@ -1,4 +1,4 @@ -from .nomogram import calculate_swi as _calculate_swi +from ._nomogram import calculate_swi as _calculate_swi def calculate_swi(temperature_difference, convective_cloud_depth): diff --git a/szilagyi/nomogram.py b/szilagyi/_nomogram.py index 4dcd141..4dcd141 100644 --- a/szilagyi/nomogram.py +++ b/szilagyi/_nomogram.py diff --git a/szilagyi/plots.py b/szilagyi/plots.py index 31b8af2..b21a07b 100644 --- a/szilagyi/plots.py +++ b/szilagyi/plots.py @@ -3,7 +3,7 @@ import math import matplotlib.pyplot as plot from . import _dataset -from .nomogram import calculate_swi +from ._nomogram import calculate_swi MAX_X = 40 |