Skip to content

Commit

Permalink
refactor: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Gowtham1729 committed Dec 11, 2023
1 parent a74348c commit 0642886
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion applications/backend/django_server/news/admin.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from django.contrib import admin

from .models import News, Ticker, Analysis
from .models import Analysis, News, Ticker

admin.site.register(News)
admin.site.register(Ticker)
Expand Down
1 change: 0 additions & 1 deletion applications/backend/django_server/news/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,3 @@ class Meta:

def __str__(self):
return f"{self.symbol} - {self.date}"

0 comments on commit 0642886

Please sign in to comment.