Skip to content

Commit

Permalink
Add correct default ignore of settings keys
Browse files Browse the repository at this point in the history
  • Loading branch information
timsavage committed Oct 10, 2024
1 parent 6f7d0c1 commit 76f437a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pyapp/testing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
"""

from types import ModuleType
from collections.abc import Sequence

from ..conf.loaders import settings_iterator


def settings_in_module(
*modules: ModuleType,
exclude: list[str] = ("INCLUDE",),
exclude: Sequence[str] = ("INCLUDE_SETTINGS",),
):
"""Generate a list of settings defined in a module (or modules).
Expand Down

0 comments on commit 76f437a

Please sign in to comment.