Skip to content

Commit

Permalink
docs: Add docstring. #1597
Browse files Browse the repository at this point in the history
  • Loading branch information
mturoci committed Sep 28, 2022
1 parent 0cc8383 commit 78e7451
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion py/h2o_wave/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -6412,7 +6412,7 @@ def load(__d: Dict) -> 'ImageAnnotatorRect':


class ImageAnnotatorPoint:
"""No documentation available.
"""Create a polygon annotation point with x and y coordinates..
"""
def __init__(
self,
Expand Down
2 changes: 1 addition & 1 deletion py/h2o_wave/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -2395,7 +2395,7 @@ def image_annotator_point(
x: float,
y: float,
) -> ImageAnnotatorPoint:
"""No documentation available.
"""Create a polygon annotation point with x and y coordinates..
Args:
x: `x` coordinate of the point.
Expand Down
2 changes: 1 addition & 1 deletion r/R/ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -2787,7 +2787,7 @@ ui_image_annotator_rect <- function(
return(.o)
}

#' No documentation available.
#' Create a polygon annotation point with x and y coordinates..
#'
#' @param x `x` coordinate of the point.
#' @param y `y` coordinate of the point.
Expand Down
1 change: 1 addition & 0 deletions ui/src/image_annotator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { AnnotatorTags } from './text_annotator'
import { clas, cssVar, cssVarValue, px, rgb } from './theme'
import { wave } from './ui'

/** Create a polygon annotation point with x and y coordinates.. */
export interface ImageAnnotatorPoint {
/** `x` coordinate of the point. */
x: F
Expand Down

0 comments on commit 78e7451

Please sign in to comment.