Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Gowtham1729 committed Dec 13, 2023
1 parent da961c5 commit 4a1f09a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion applications/backend/django_server/news/filters.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import django_filters

from .models import News


Expand All @@ -7,4 +8,4 @@ class NewsFilter(django_filters.FilterSet):

class Meta:
model = News
fields = ["category", "symbol", "src", "need_attention", "date"]
fields = ["category", "symbol", "src", "need_attention", "date"]
1 change: 0 additions & 1 deletion applications/backend/django_server/news/views.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from django.utils import timezone

from rest_framework import viewsets

from .models import Analysis, News, Ticker
Expand Down

0 comments on commit 4a1f09a

Please sign in to comment.