Skip to content

Commit

Permalink
isort
Browse files Browse the repository at this point in the history
  • Loading branch information
kadrlica committed Nov 28, 2024
1 parent 7e650bd commit b7b04bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions python/lsst/rubintv/analysis/service/commands/butler.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@

from __future__ import annotations

import base64
import logging
from dataclasses import dataclass
from typing import TYPE_CHECKING
import base64

from ..command import BaseCommand

Expand Down Expand Up @@ -168,7 +168,7 @@ def build_contents(self, data_center: DataCenter) -> dict:
manager = MemFileManager()
opts = dict()
if self.compress:
from lsst.afw.fits import ImageCompressionOptions, ImageWriteOptions, ImageScalingOptions
from lsst.afw.fits import ImageCompressionOptions, ImageScalingOptions, ImageWriteOptions
logger.info("Configuring compression.")
quantize = 10.0
compression = ImageCompressionOptions(ImageCompressionOptions.RICE, True, 0.0)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@

import json
from typing import cast
import pytest

import astropy.table
import lsst.rubintv.analysis.service as lras
import pytest
import utils


Expand Down

0 comments on commit b7b04bd

Please sign in to comment.