Skip to content

Commit

Permalink
Use ../core/kinds instead of core/kinds in imports (#13254)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpap committed Jul 19, 2023
1 parent cad58bf commit 0ba2550
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bokehjs/src/lib/models/tools/gestures/wheel_zoom_tool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type {PinchEvent, ScrollEvent} from "core/ui_events"
import {Dimensions} from "core/enums"
import {is_mobile} from "core/util/platform"
import {tool_icon_wheel_zoom} from "styles/icons.css"
import {Enum} from "core/kinds"
import {Enum} from "../../../core/kinds"

const ZoomTogether = Enum("none", "cross", "all")
type ZoomTogether = typeof ZoomTogether["__type__"]
Expand Down
2 changes: 1 addition & 1 deletion bokehjs/src/lib/models/widgets/autocomplete_input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {empty, display, undisplay, div} from "core/dom"
import type * as p from "core/properties"
import {take} from "core/util/iterator"
import {clamp} from "core/util/math"
import {Enum} from "core/kinds"
import {Enum} from "../../core/kinds"

import dropdown_css, * as dropdown from "styles/dropdown.css"

Expand Down

0 comments on commit 0ba2550

Please sign in to comment.