2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-16 20:15:44 +00:00

Add missing args to docstrings

This commit is contained in:
Matthias
2022-05-28 20:27:20 +02:00
parent ff9873f92c
commit c24882bf66
15 changed files with 165 additions and 106 deletions

View File

@ -94,8 +94,11 @@ class FileManager:
"""Try to match a header (from the file) to a list of known headers.
Args:
header - Header name to look for
threshold - Match threshold for fuzzy search
header (Any): Header name to look for
threshold (int, optional): Match threshold for fuzzy search. Defaults to 80.
Returns:
Any: Matched headers
"""
# Replace null values with empty string
if header is None: