Skip to content

Commit

Permalink
Merge pull request #23 from lsst/tickets/PREOPS-4776
Browse files Browse the repository at this point in the history
tickets/PREOPS-4776: Fix import order for isort in rubin_scheduler
  • Loading branch information
ehneilsen authored Jan 16, 2024
2 parents 4853d59 + 31c8a97 commit 23a9887
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
import shutil
import socket
import sys
from contextlib import redirect_stdout
from numbers import Number, Integral
from numbers import Integral, Number
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
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 23a9887

Please sign in to comment.