Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanbconaway committed Jan 29, 2024
1 parent 92b6446 commit 93abc35
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/app/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Init the applicaiton."""

from flask import Flask, render_template, request
from flask_limiter import Limiter
from flask_limiter.util import get_remote_address
Expand Down
1 change: 1 addition & 0 deletions src/app/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Export global config variables."""

import sqlfluff

SQLFLUFF_VERSION = sqlfluff.__version__
Expand Down
1 change: 1 addition & 0 deletions src/app/wsgi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Run the wsgi server."""

import argparse
import os

Expand Down
1 change: 1 addition & 0 deletions test/test_app.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for the application."""

import app
import pytest
from app.routes import sql_encode
Expand Down
1 change: 1 addition & 0 deletions test/test_wsgi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for the application."""

import subprocess
import time

Expand Down

0 comments on commit 93abc35

Please sign in to comment.