We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 647441b commit 1e9cc08Copy full SHA for 1e9cc08
src/kili/presentation/client/label.py
@@ -772,6 +772,12 @@ def update_properties_in_label(
772
Examples:
773
>>> kili.update_properties_in_label(label_id=label_id, json_response={...})
774
"""
775
+ warnings.warn(
776
+ "The method `update_properties_in_label` is going to be deprecated. Please use"
777
+ " `kili.append_labels` method instead to add a new label.",
778
+ DeprecationWarning,
779
+ stacklevel=1,
780
+ )
781
return LabelUseCases(self.kili_api_gateway).update_properties_in_label(
782
label_id=LabelId(label_id),
783
seconds_to_label=seconds_to_label,
0 commit comments