Skip to content
Open
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
4 changes: 2 additions & 2 deletions docs/developer.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Hatch

We use [Hatch](https://hatch.pypa.io/latest) to set up environments and scripts for most developer tasks.
To see a table of the available environmens and their scripts, run:
To see a table of the available environments and their scripts, run:

hatch env show

Expand All @@ -29,4 +29,4 @@ You can install the [pre-commit](https://pre-commit.com/) hooks with:

Or run them via:

hatch run precommit:install
hatch run precommit:run
2 changes: 1 addition & 1 deletion docs/topics.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ First steps are to:

1. Do a full import of all the raw `CifData`.
1. Run the `CifCleanWorkChain` for all of them.
3. "Curate" the structures with `mc3d-source curate`.
3. "Curate" the structures with `mc3d curate`.

This will result in a group of "curated" structures, let's call it `mpds/v2/structure/curated`.

Expand Down
2 changes: 1 addition & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ The `mc3d-source` package comes with a CLI that takes care of most steps require
After installing, run:

```
mc3d-source --help
mc3d --help
```

To get an overview of the commands.
3 changes: 1 addition & 2 deletions src/mc3d_source/cli/commands/analyse/deprecation.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from aiida import orm
from rich import print as rprint

from mc3d_source.contants import SourceDeprecation
from mc3d_source.constants import SourceDeprecation
from mc3d_source.tools.source import get_source_string

if TYPE_CHECKING:
Expand Down Expand Up @@ -80,7 +80,6 @@ def structure_updated(
rprint(f"[bold yellow]Report:[/] Found {len(old_source_were_fine)} structures where the old source was fine.")

new_sources_taken = new_sources.difference(old_source_were_fine)
len(new_sources_taken)

versions = set()
updated_sources = set()
Expand Down
File renamed without changes.