Skip to content

Commit

Permalink
chore(deps): update dependency black to v24 (#57)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency black to v24

* black: fixes for v24

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: thorpejosh <[email protected]>
  • Loading branch information
renovate[bot] and ThorpeJosh authored Feb 7, 2024
1 parent cbd997a commit 5504231
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions image_sorting_tool/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""Image-sorting-tool
"""

__version__ = "1.0.2.dev"
1 change: 1 addition & 0 deletions image_sorting_tool/__main__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
""" Image sorting tool module. This script launches a tkinter GUI that allows images to be sorted
based on their date taken.
"""

import argparse
import logging
from image_sorting_tool.gui import GUI
Expand Down
1 change: 1 addition & 0 deletions image_sorting_tool/gui.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
""" Image sorting tool tkinter GUI module
"""

import sys
import logging
import time
Expand Down
1 change: 1 addition & 0 deletions image_sorting_tool/image_sort.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
""" Image sorting tool code that performs the parallel sorting operation
"""

import logging
import multiprocessing
import os
Expand Down
1 change: 1 addition & 0 deletions image_sorting_tool/tests/test_image_sort.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Unit tests for the image_sort module
"""

import os
import sys
import shutil
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Setup module to allow packaging, distributing and pip installing"""

from setuptools import setup
from image_sorting_tool import __version__ as version

Expand All @@ -7,7 +8,7 @@
"dev": [
"pytest==8.0.*",
"pylint==3.0.*",
"black==23.12.*",
"black==24.1.*",
"setuptools==69.0.*",
]
}
Expand Down

0 comments on commit 5504231

Please sign in to comment.