Skip to content

Commit

Permalink
Bump black from 23.12.1 to 24.1.1 (#328)
Browse files Browse the repository at this point in the history
* Bump black from 23.12.1 to 24.1.1

Bumps [black](https://github.com/psf/black) from 23.12.1 to 24.1.1.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@23.12.1...24.1.1)

---
updated-dependencies:
- dependency-name: black
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* fmt

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nolan Conaway <nolanbconaway@gmail.com>
  • Loading branch information
dependabot[bot] and nolanbconaway authored Jan 29, 2024
1 parent cb43db4 commit 91e7ff7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pytest==8.0.0
pytest-cov==4.1.0
coverage==7.4.1
black==23.12.1
black==24.1.1
requests==2.31.0
beautifulsoup4==4.12.3
tox==4.12.1
Expand Down
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 91e7ff7

Please sign in to comment.