Skip to content

Commit

Permalink
Fix import order for isort in rubin_scheduler
Browse files Browse the repository at this point in the history
  • Loading branch information
ehneilsen committed Jan 16, 2024
1 parent 4853d59 commit 31c8a97
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rubin_scheduler/sim_archive/sim_archive.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
import json
import logging
import lzma
import pickle
import os
import pickle

Check warning on line 20 in rubin_scheduler/sim_archive/sim_archive.py

View check run for this annotation

Codecov / codecov/patch

rubin_scheduler/sim_archive/sim_archive.py#L20

Added line #L20 was not covered by tests
import shutil
import socket
import sys
from contextlib import redirect_stdout
from numbers import Number, Integral
from numbers import Integral, Number

Check warning on line 25 in rubin_scheduler/sim_archive/sim_archive.py

View check run for this annotation

Codecov / codecov/patch

rubin_scheduler/sim_archive/sim_archive.py#L25

Added line #L25 was not covered by tests
from pathlib import Path
from tempfile import TemporaryDirectory

Expand All @@ -35,8 +35,8 @@
from lsst.resources import ResourcePath

import rubin_scheduler
from rubin_scheduler.scheduler.utils import SchemaConverter
from rubin_scheduler.scheduler import sim_runner
from rubin_scheduler.scheduler.utils import SchemaConverter

Check warning on line 39 in rubin_scheduler/sim_archive/sim_archive.py

View check run for this annotation

Codecov / codecov/patch

rubin_scheduler/sim_archive/sim_archive.py#L39

Added line #L39 was not covered by tests
from rubin_scheduler.utils import Site

SITE = None
Expand Down
1 change: 1 addition & 0 deletions tests/site_models/test_almanac.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import numpy as np
import pandas as pd

from rubin_scheduler.site_models import Almanac


Expand Down

0 comments on commit 31c8a97

Please sign in to comment.