Skip to content

Commit

Permalink
rename ctx.create_store to ctx.store
Browse files Browse the repository at this point in the history
  • Loading branch information
imanjra committed Nov 12, 2024
1 parent 852d6dc commit 8cbe320
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions fiftyone/operators/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -875,8 +875,9 @@ def set_progress(self, progress=None, label=None):
else:
self.log(f"Progress: {progress} - {label}")

def create_store(self, store_name):
"""Creates a new store with the specified name.
def store(self, store_name):
"""
Create (if not previously created) and use a store with the specified name.
Args:
store_name: the name of the store
Expand Down

0 comments on commit 8cbe320

Please sign in to comment.