mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-17 04:25:42 +00:00
Fix common spelling mistakes (#4956)
* 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:
@ -84,8 +84,8 @@ def fetch_rtd_versions():
|
||||
print("Discovered the following versions:")
|
||||
print(versions)
|
||||
|
||||
with open(output_filename, 'w') as fo:
|
||||
json.dump(versions, fo, indent=2)
|
||||
with open(output_filename, 'w') as file:
|
||||
json.dump(versions, file, indent=2)
|
||||
|
||||
|
||||
def get_release_data():
|
||||
|
Reference in New Issue
Block a user