diff --git a/CHANGELOG.md b/CHANGELOG.md index d8c7fbdd..79bddf13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2125,12 +2125,12 @@ Signed-off-by: phernandez - Update CLAUDE.md ([#33](https://github.com/basicmachines-co/basic-memory/pull/33), [`dfaf0fe`](https://github.com/basicmachines-co/basic-memory/commit/dfaf0fea9cf5b97d169d51a6276ec70162c21a7e)) -fix spelling in CLAUDE.md: enviroment -> environment Signed-off-by: Ikko Eltociear Ashimine +fix spelling in CLAUDE.md: environment typo Signed-off-by: Ikko Eltociear Ashimine ### Refactoring -- Move project stats into projct subcommand +- Move project stats into project subcommand ([`2a881b1`](https://github.com/basicmachines-co/basic-memory/commit/2a881b1425c73947f037fbe7ac5539c015b62526)) Signed-off-by: phernandez @@ -2559,7 +2559,7 @@ Co-authored-by: phernandez ### Bug Fixes -- Refix vitual env in installer build +- Refix virtual env in installer build ([`052f491`](https://github.com/basicmachines-co/basic-memory/commit/052f491fff629e8ead629c9259f8cb46c608d584)) @@ -2578,7 +2578,7 @@ Co-authored-by: phernandez ### Bug Fixes -- Fix path to intaller app artifact +- Fix path to installer app artifact ([`53d220d`](https://github.com/basicmachines-co/basic-memory/commit/53d220df585561f9edd0d49a9e88f1d4055059cf)) @@ -2586,7 +2586,7 @@ Co-authored-by: phernandez ### Bug Fixes -- Activate vitualenv in installer build +- Activate virtualenv in installer build ([`d4c8293`](https://github.com/basicmachines-co/basic-memory/commit/d4c8293687a52eaf3337fe02e2f7b80e4cc9a1bb)) - Trigger installer build on release diff --git a/README.md b/README.md index c5e6d4a1..2c84baef 100644 --- a/README.md +++ b/README.md @@ -516,7 +516,7 @@ canvas(nodes, edges, title, folder) - Generate knowledge visualizations "What have I been working on in the past week?" ``` -## Futher info +## Further info See the [Documentation](https://docs.basicmemory.com?utm_source=github&utm_medium=referral&utm_campaign=readme) for more info, including: diff --git a/src/basic_memory/schemas/sync_report.py b/src/basic_memory/schemas/sync_report.py index 15999538..c73096ef 100644 --- a/src/basic_memory/schemas/sync_report.py +++ b/src/basic_memory/schemas/sync_report.py @@ -5,7 +5,7 @@ from typing import TYPE_CHECKING, Dict, List, Set from pydantic import BaseModel, Field -# avoid cirular imports +# avoid circular imports if TYPE_CHECKING: # pragma: no cover from basic_memory.sync.sync_service import SyncReport diff --git a/tests/importers/test_importer_utils.py b/tests/importers/test_importer_utils.py index fde747c9..d9187047 100644 --- a/tests/importers/test_importer_utils.py +++ b/tests/importers/test_importer_utils.py @@ -53,7 +53,7 @@ def test_format_timestamp(): formatted = format_timestamp(unix_str) assert "2023" in formatted - # Test with unparseable string + # Test with unparsable string assert format_timestamp("not a timestamp") == "not a timestamp" # Test with non-timestamp object diff --git a/tests/markdown/test_entity_parser.py b/tests/markdown/test_entity_parser.py index 6a5e16a0..bfcf46c1 100644 --- a/tests/markdown/test_entity_parser.py +++ b/tests/markdown/test_entity_parser.py @@ -200,7 +200,7 @@ def test_parse_date_formats(entity_parser): # Invalid formats assert entity_parser.parse_date(None) is None assert entity_parser.parse_date(123) is None # Non-string/datetime - assert entity_parser.parse_date("not a date") is None # Unparseable string + assert entity_parser.parse_date("not a date") is None # Unparsable string assert entity_parser.parse_date("") is None # Empty string # Test dateparser error handling diff --git a/ui/tool-ui-react/src/components/tool-ui/data-table/utilities.ts b/ui/tool-ui-react/src/components/tool-ui/data-table/utilities.ts index 9814ce27..90f8c7d9 100644 --- a/ui/tool-ui-react/src/components/tool-ui/data-table/utilities.ts +++ b/ui/tool-ui-react/src/components/tool-ui/data-table/utilities.ts @@ -109,7 +109,7 @@ export function getRowIdentifier( * Note: Single "B" is disambiguated - integers < 1024 are bytes, otherwise billions. * * @param input - String to parse - * @returns Parsed number or null if unparseable + * @returns Parsed number or null if unparsable * * @example * parseNumericLike("$1,234.56") // 1234.56