Skip to content

Commit

Permalink
fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Chubatiuk committed Jan 11, 2024
1 parent d972c79 commit 7bd2e00
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion redash/authentication/jwt_auth.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import json
import logging

import jwt
import requests
import json

logger = logging.getLogger("jwt_auth")

Expand Down
3 changes: 2 additions & 1 deletion redash/cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import click
import json

import click
from flask import current_app
from flask.cli import FlaskGroup, run_command, with_appcontext
from rq import Connection
Expand Down
2 changes: 1 addition & 1 deletion redash/handlers/webpack.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import json
import os

import json
from flask import url_for

WEBPACK_MANIFEST_PATH = os.path.join(os.path.dirname(__file__), "../../client/dist/", "asset-manifest.json")
Expand Down
2 changes: 1 addition & 1 deletion redash/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
import decimal
import hashlib
import io
import json
import os
import random
import re
import uuid

import pystache
import pytz
import json
import sqlparse
from flask import current_app
from funcy import select_values
Expand Down

0 comments on commit 7bd2e00

Please sign in to comment.