Skip to content

Commit

Permalink
Updating docs (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidban77 authored Oct 1, 2019
1 parent 70516d1 commit cc743fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Needs to be on master branch
docs-publish:
cd docs; mkdocs gh-deploy -m "[ci skip]"
cd docs; git checkout develop; mkdocs gh-deploy -m "[ci skip]"

docs-generate:
cd docs; pydoc-markdown > content/api_reference.md
cd docs; git checkout develop; pydoc-markdown > content/api_reference.md

docs-show:
cd docs; mkdocs serve
Expand Down
4 changes: 2 additions & 2 deletions docs/content/api_reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,7 @@ Creates a snapshot of the project
### `Project.delete_snapshot()`

```python
def delete_snapshot(self, snapshot_id)
def delete_snapshot(self, name=None, snapshot_id=None)
```

Deletes a snapshot of the project
Expand All @@ -1096,5 +1096,5 @@ Deletes a snapshot of the project

**Required keyword aguments:**

- `snapshot_id`
- `name` or `snapshot_id`

0 comments on commit cc743fa

Please sign in to comment.