Skip to content

Commit a2b758f

Browse files
author
Viktoria Christine Vahlin (OG SUB RPE)
committed
sort using isort
1 parent c769cf6 commit a2b758f

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

webviz_subsurface/plugins/_relative_permeability/_plugin.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@
66
from dash.development.base_component import Component
77
from webviz_config import WebvizPluginABC, WebvizSettings
88
from webviz_config.webviz_assets import WEBVIZ_ASSETS
9+
910
import webviz_subsurface
1011

1112
from ..._datainput.fmu_input import load_csv
1213
from ..._datainput.relative_permeability import load_satfunc, load_scal_recommendation
13-
from .shared_settings import SCALRecommendation, Selectors, Visualization
14-
from .views import RelpermCappres
1514
from ._error import error
1615
from ._plugin_ids import PlugInIDs
16+
from .shared_settings import SCALRecommendation, Selectors, Visualization
17+
from .views import RelpermCappres
1718

1819

1920
class RelativePermeability(WebvizPluginABC):

webviz_subsurface/plugins/_relative_permeability/shared_settings/_filter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
from typing import Tuple, Dict, List
1+
from typing import Dict, List, Tuple
22

33
import pandas as pd
4+
import webviz_core_components as wcc
45
from dash import Input, Output, callback
56
from dash.development.base_component import Component
67
from webviz_config.webviz_plugin_subclasses import SettingsGroupABC
7-
import webviz_core_components as wcc
88

99
from .._plugin_ids import PlugInIDs
1010

webviz_subsurface/plugins/_relative_permeability/views/relperm_cappres/_relcap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class IDs:
2626
RELATIVE_PERMEABILIY = "reative-permeability"
2727

2828
SCAL_COLORMAP = {
29-
"Missing": "#ffff00", # Using yellow if the curve couldn't be found
29+
"Missing": "#ffff00", # Using yellow if the curve can't be found
3030
"KRW": "#0000aa",
3131
"KRG": "#ff0000",
3232
"KROG": "#00aa00",

0 commit comments

Comments
 (0)