Skip to content

Commit

Permalink
sort using isort
Browse files Browse the repository at this point in the history
  • Loading branch information
Viktoria Christine Vahlin (OG SUB RPE) committed Jul 11, 2022
1 parent c769cf6 commit a2b758f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions webviz_subsurface/plugins/_relative_permeability/_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@
from dash.development.base_component import Component
from webviz_config import WebvizPluginABC, WebvizSettings
from webviz_config.webviz_assets import WEBVIZ_ASSETS

import webviz_subsurface

from ..._datainput.fmu_input import load_csv
from ..._datainput.relative_permeability import load_satfunc, load_scal_recommendation
from .shared_settings import SCALRecommendation, Selectors, Visualization
from .views import RelpermCappres
from ._error import error
from ._plugin_ids import PlugInIDs
from .shared_settings import SCALRecommendation, Selectors, Visualization
from .views import RelpermCappres


class RelativePermeability(WebvizPluginABC):
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from typing import Tuple, Dict, List
from typing import Dict, List, Tuple

import pandas as pd
import webviz_core_components as wcc
from dash import Input, Output, callback
from dash.development.base_component import Component
from webviz_config.webviz_plugin_subclasses import SettingsGroupABC
import webviz_core_components as wcc

from .._plugin_ids import PlugInIDs

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class IDs:
RELATIVE_PERMEABILIY = "reative-permeability"

SCAL_COLORMAP = {
"Missing": "#ffff00", # Using yellow if the curve couldn't be found
"Missing": "#ffff00", # Using yellow if the curve can't be found
"KRW": "#0000aa",
"KRG": "#ff0000",
"KROG": "#00aa00",
Expand Down

0 comments on commit a2b758f

Please sign in to comment.