Skip to content

Commit

Permalink
uncomment tag functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
jacalata committed Sep 30, 2024
1 parent 9196cad commit d73f066
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions samples/explore_datasource.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ def main():
sample_datasource.description = "Description updated by TSC"
server.datasources.update(sample_datasource)

"""
# Add some tags to the datasource
original_tag_set = set(sample_datasource.tags)
sample_datasource.tags.update("a", "b", "c", "d")
Expand All @@ -93,8 +92,6 @@ def main():
# Delete all tags that were added by setting tags to original
sample_datasource.tags = original_tag_set
server.datasources.update(sample_datasource)
"""


if __name__ == "__main__":
main()

0 comments on commit d73f066

Please sign in to comment.