2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-18 10:46:31 +00:00

Fix common spelling mistakes ()

* add codespell

* first fixes

* doc fixes

* fix docstrings and comments

* functional changes

* docstrings again

* and docs again

* rename args

* add ignore

* use pre-commit for filtering instead

* ups

* fix typo in filter
This commit is contained in:
Matthias Mair
2023-06-03 16:04:52 +02:00
committed by GitHub
parent 5e2bfaa43a
commit 21ed4b2081
161 changed files with 344 additions and 334 deletions
.github
ISSUE_TEMPLATE
actions
workflows
.pre-commit-config.yamlCONTRIBUTING.md
InvenTree
ci
contrib
docker-compose.yml
docker
docs
tasks.py

@@ -1078,10 +1078,10 @@ class PartAPITest(PartAPITestBase):
'export': 'csv',
},
expected_fn='InvenTree_Parts.csv',
) as fo:
) as file:
data = self.process_csv(
fo,
file,
excluded_cols=excluded_cols,
required_cols=required_cols,
required_rows=Part.objects.count(),