Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
azhavoro committed Jan 31, 2023
1 parent 5d303a6 commit a6bdde7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion cvat/apps/engine/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#
# SPDX-License-Identifier: MIT

import json
import logging
import sys
import os.path as osp
Expand Down
2 changes: 1 addition & 1 deletion cvat/apps/engine/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
from cvat.apps.engine.location import get_location_configuration, StorageType

from . import models, task
from .log import clogger, slogger
from .log import slogger
from cvat.apps.iam.permissions import (CloudStoragePermission,
CommentPermission, IssuePermission, JobPermission, ProjectPermission,
TaskPermission, UserPermission)
Expand Down
2 changes: 1 addition & 1 deletion cvat/apps/logs/log_exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def _create_csv(query_params, output_filename, cache_ttl):
'to': query_params.pop('to'),
}

query = f"SELECT * FROM cvat.logs"
query = "SELECT * FROM cvat.logs"
conditions = []
parameters = {}
for param, value in query_params.items():
Expand Down

0 comments on commit a6bdde7

Please sign in to comment.