Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#60)
Browse files Browse the repository at this point in the history
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/psf/black: 22.12.0 → 23.1.0](psf/black@22.12.0...23.1.0)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] committed Feb 14, 2023
1 parent 257547a commit 53ded07
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
exclude: .+/migrations/.+\.py
repos:
- repo: https://github.com/psf/black
rev: 22.12.0
rev: 23.1.0
hooks:
- id: black

Expand Down
1 change: 0 additions & 1 deletion drf_account/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ class ShowBankSerializer(serializers.ModelSerializer):
"""

class Meta:

model = BankMaster
fields = ("name", "bank_aliases")

Expand Down
1 change: 0 additions & 1 deletion drf_contact/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ def __str__(self):
return self.name

class Meta:

unique_together = ("created_by", "name")
verbose_name = _("Contact Detail")
verbose_name_plural = _("Contact Details")
1 change: 0 additions & 1 deletion drf_transaction/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ class AddTransactionDetailsSerializer(serializers.ModelSerializer):
contact = serializers.CharField(required=True, max_length=254)

class Meta:

model = TransactionDetail
fields = (
"category",
Expand Down

0 comments on commit 53ded07

Please sign in to comment.