Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Project.index. #593

Merged
merged 4 commits into from
Aug 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion doc/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ The Project
Project.groupbydoc
Project.import_from
Project.id
Project.index
Project.isfile
Project.min_len_unique_id
Project.num_jobs
Expand Down
9 changes: 0 additions & 9 deletions doc/cli.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ Sharing and archiving a project:
* `move`_
* `clone`_
* `sync`_
* `index`_

.. _signac-cli-clone:

Expand Down Expand Up @@ -92,14 +91,6 @@ import
.. program-output:: signac import --help


.. _signac-cli-index:

index
=====

.. program-output:: signac index --help


.. _signac-cli-init:

init
Expand Down
2 changes: 1 addition & 1 deletion signac/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def main_project(args):
"""Handle project subcommand."""
project = get_project()
if args.index:
for doc in project.index():
for doc in project._index():
print(json.dumps(doc))
return
if args.workspace:
Expand Down
Loading