Skip to content

Commit

Permalink
Lint, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
xtrinch committed Jan 7, 2022
1 parent fb17787 commit 710465e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fcm_django/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__author__ = "xTrinch"
__email__ = "[email protected]"
__version__ = "1.0.7"
__version__ = "1.0.8"


class NotificationError(Exception):
Expand Down
4 changes: 3 additions & 1 deletion fcm_django/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@

class Device(models.Model):
id = models.AutoField(
verbose_name="ID", primary_key=True, auto_created=True,
verbose_name="ID",
primary_key=True,
auto_created=True,
)
name = models.CharField(
max_length=255, verbose_name=_("Name"), blank=True, null=True
Expand Down

0 comments on commit 710465e

Please sign in to comment.