Skip to content

Commit

Permalink
Fixing lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tabiva committed Sep 6, 2024
1 parent 909942c commit 2434f02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_dharma/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def count_check(model: models.base.ModelBase, filters: dict, count: int) -> None
:param model: Django model to perform the check on.
:param filters: Dictionary of filters to apply to the model's records.
:param count: Minimum number of expected records.
"""
""" # noqa: E501
tot = model.objects.filter(**filters).count()

assert tot >= count, (
Expand Down

0 comments on commit 2434f02

Please # to comment.