Skip to content

Commit af0247a

Browse files
committed
Relint the code after black update
1 parent 0162b8d commit af0247a

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

src/imagej/_java.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Internal utility functions for working with Java objects.
33
These are not intended for external use in PyImageJ-based scripts!
44
"""
5+
56
import logging
67
from functools import lru_cache
78

src/imagej/convert.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Utility functions for converting objects between types.
33
"""
4+
45
import ctypes
56
import logging
67
import os

src/imagej/dims.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Utility functions for querying and manipulating dimensional axis metadata.
33
"""
4+
45
import logging
56
from typing import List, Tuple, Union
67

src/imagej/images.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Utility functions for creating and working with images.
33
"""
4+
45
import logging
56

67
import numpy as np

src/imagej/stack.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Utility functions for manipulating image stacks.
33
"""
4+
45
from typing import List, Tuple
56

67
import scyjava as sj

0 commit comments

Comments
 (0)