Skip to content

Commit

Permalink
Make black happy!
Browse files Browse the repository at this point in the history
  • Loading branch information
elevans committed May 10, 2024
1 parent 5317732 commit 15e8366
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 1 deletion.
4 changes: 3 additions & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ def ij(request):
legacy = request.config.getoption("--legacy")
headless = request.config.getoption("--headless")

imagej.when_imagej_starts(lambda ij: setattr(ij, "_when_imagej_starts_result", "success"))
imagej.when_imagej_starts(
lambda ij: setattr(ij, "_when_imagej_starts_result", "success")
)

mode = "headless" if headless else "interactive"
ij = imagej.init(ij_dir, mode=mode, add_legacy=legacy)
Expand Down
1 change: 1 addition & 0 deletions src/imagej/_java.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Internal utility functions for working with Java objects.
These are not intended for external use in PyImageJ-based scripts!
"""

import logging
from functools import lru_cache

Expand Down
1 change: 1 addition & 0 deletions src/imagej/convert.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Utility functions for converting objects between types.
"""

import ctypes
import logging
import os
Expand Down
1 change: 1 addition & 0 deletions src/imagej/dims.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Utility functions for querying and manipulating dimensional axis metadata.
"""

import logging
from typing import List, Tuple, Union

Expand Down
1 change: 1 addition & 0 deletions src/imagej/images.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Utility functions for creating and working with images.
"""

import logging

import numpy as np
Expand Down
1 change: 1 addition & 0 deletions src/imagej/stack.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Utility functions for manipulating image stacks.
"""

from typing import List, Tuple

import scyjava as sj
Expand Down

0 comments on commit 15e8366

Please sign in to comment.