Skip to content

Commit

Permalink
CSCKAN-302 chore: Remove logs and unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
afonsobspinto committed Oct 7, 2024
1 parent d8e8773 commit cd1af0f
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions backend/composer/services/export_services.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
import csv
import logging
import sys

logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(levelname)s - %(message)s',
handlers=[logging.StreamHandler(sys.stdout)]
)
import os
import tempfile
import typing
from typing import Dict, Callable, List

from django.contrib.auth.models import User
from django.db import transaction
from django.db.models import Count, QuerySet, Prefetch, Q, F
from django.db.models import Count, QuerySet, Prefetch
from django.utils import timezone

from composer.enums import (
Expand Down

0 comments on commit cd1af0f

Please sign in to comment.