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 Oct 22, 2024
1 parent c21cc6d commit 6be85f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fiftyone/operators/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -872,9 +872,9 @@ def set_progress(self, progress=None, label=None):
else:
self.log(f"Progress: {progress} - {label}")

# TODO resolve circular import so this can have a type
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 6be85f3

Please sign in to comment.