Skip to content

Commit d1a2f2c

Browse files
authored
Add env to __all__ (#397)
1 parent 054fd1d commit d1a2f2c

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## (unreleased)
4+
5+
Bug fixes:
6+
7+
- Add `env` to `__all__` ([#396](https://github.com/sloria/environs/issues/396)).
8+
Thanks [daveflr](https://github.com/daveflr) for reporting.
9+
310
## 14.1.0 (2025-01-10)
411

512
Features:

src/environs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
except ImportError:
4343
pass
4444

45-
__all__ = ["Env", "EnvError", "ValidationError"]
45+
__all__ = ["Env", "env", "EnvError", "ValidationError"]
4646

4747
_T = typing.TypeVar("_T")
4848
_StrType = str

0 commit comments

Comments
 (0)