Skip to content

Commit

Permalink
#181 Update docs and fix Pylint error
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhad6 committed May 6, 2024
1 parent bf3438c commit dcc79f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/parameter-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,10 @@ class NoTypeValidationParam(CustomParam, type_validation=False):
NoTypeValidationParam(value="123")
```

## Files

{py:class}`ParamFile` is a parameter dataclass

## Collections

Ordinary lists and dictionaries can be used within parameter data; however, any
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def fixture_param_list_contents(number: float, string: str) -> list[Any]:


@pytest.fixture(name="param_dict_contents")
# pylint: disable-next=too-many-arguments
# pylint: disable-next=too-many-arguments,too-many-locals
def fixture_param_dict_contents(
number: float,
string: str,
Expand Down

0 comments on commit dcc79f2

Please sign in to comment.