Skip to content

Commit cdc6297

Browse files
committed
Fix documentation issues
[ch64060]
1 parent c343de4 commit cdc6297

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dataikuapi/dss/admin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -950,9 +950,9 @@ def get_raw(self):
950950

951951
class DSSInstanceVariables(dict):
952952
"""
953-
Dict containing the instance variables. The variables can be modified directly in the dict and persisted using its `save` method.
953+
Dict containing the instance variables. The variables can be modified directly in the dict and persisted using its :meth:`save` method.
954954
955-
Do not create this directly, use :meth:`dataikuapi.dssclient.DSSClient.get_global_variables`
955+
Do not create this directly, use :meth:`dataikuapi.DSSClient.get_global_variables`
956956
"""
957957

958958
def __init__(self, client, variables):

dataikuapi/dssclient.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,7 @@ def get_global_usage_summary(self, with_per_project=False):
761761

762762
def get_variables(self):
763763
"""
764-
Deprecated. Use get_global_variables
764+
Deprecated. Use :meth:`get_global_variables`
765765
"""
766766
warnings.warn("get_variables is deprecated, please use get_global_variables", DeprecationWarning)
767767
return self.get_global_variables()
@@ -779,7 +779,7 @@ def get_global_variables(self):
779779

780780
def set_variables(self, variables):
781781
"""
782-
Deprecated. Use get_global_variables().save()
782+
Deprecated. Use :meth:`get_global_variables` and :meth:`dataikuapi.dss.admin.DSSInstanceVariables.save`
783783
784784
Updates the DSS instance's variables
785785

0 commit comments

Comments
 (0)