Skip to content

Commit

Permalink
Remove unused missing argument (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria authored Jan 19, 2024
1 parent cceffd6 commit c4ccd32
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Other changes:

- Remove `subcast_key` argument of `env.dict`. Use `subcast_keys` instead.
- Bump minimum required marshmallow version to 3.13.0.
- Remove `missing` argument from `Env` methods. Use `default` instead.
- _Backwards-incompatible_: Remove `environs.__version__` variable.
Use `importlib.metadata.version("environs")` instead.

Expand Down
1 change: 0 additions & 1 deletion src/environs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ def method(
*,
# Subset of relevant marshmallow.Field kwargs
load_default: typing.Any = ma.missing,
missing: typing.Any = ma.missing,
validate: typing.Optional[
typing.Union[
typing.Callable[[typing.Any], typing.Any],
Expand Down

0 comments on commit c4ccd32

Please sign in to comment.