Skip to content

Commit

Permalink
fix: linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenthoms committed Dec 20, 2024
1 parent b4ac4aa commit 502e30b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
2 changes: 1 addition & 1 deletion python/src/components/ReadoutComponent/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { default } from "./ReadoutComponent";
export { default } from "./ReadoutComponent";
7 changes: 1 addition & 6 deletions python/src/components/SubsurfaceViewer/SubsurfaceViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,9 @@ import {
ViewStateType,
} from "@webviz/subsurface-viewer";
import { DeckGLRef } from "@deck.gl/react";
import {
PickingInfoPerView,
useMultiViewPicking,
} from "@webviz/subsurface-viewer/src/hooks/useMultiViewPicking";
import { useMultiViewPicking } from "@webviz/subsurface-viewer/src/hooks/useMultiViewPicking";
import { useMultiViewCursorTracking } from "@webviz/subsurface-viewer/src/hooks/useMultiViewCursorTracking";
import { isEqual } from "lodash";
import ViewAnnotation from "../ViewAnnotation/ViewAnnotation";
import ReadoutComponent from "../ReadoutComponent";

const SubsurfaceViewerComponent = React.lazy(() =>
import(
Expand Down
5 changes: 2 additions & 3 deletions python/src/components/WellLogViewer/WellLogViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const WellLogViewerComponent = React.lazy(() =>
}))
);


// react-docgen / dash-generate-components/extract-meta.js does not properly parse
// the imported WellLogViewerProps. Hence, we have to recreate them here.
type WellLogViewOptions = {
Expand Down Expand Up @@ -51,7 +50,7 @@ type WellLogViewerProps = {
template: object;

/** Prop containing color function/table array */
colorMapFunctions: any;
colorMapFunctions: unknown;

/** Orientation of the track plots on the screen. Default is false */
horizontal?: boolean;
Expand All @@ -63,7 +62,7 @@ type WellLogViewerProps = {
selection?: number[];

/** Well picks data */
wellpick?: any;
wellpick?: unknown;

/** Primary axis id: " md", "tvd", "time"... */
primaryAxis?: string;
Expand Down

0 comments on commit 502e30b

Please sign in to comment.