Skip to content

Commit

Permalink
import cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
aranabhat committed Jan 21, 2025
1 parent 568b7f7 commit e6ef501
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions python/lsst/ci/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import datetime
import json
import os
import requests
import select
import shlex
import shutil
Expand All @@ -14,16 +13,17 @@
import sys
import textwrap
import time
from typing import TextIO
import traceback
from typing import TextIO


import eups
import eups.tags
import requests
import yaml

from . import models
from .prepare import Manifest
from .prepare import AgentManager
from .prepare import AgentManager, Manifest


def product_representer(dumper, data):
Expand Down
2 changes: 1 addition & 1 deletion python/lsst/ci/prepare.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
import os
import os.path
import re
import requests
import shutil
import sys
import time
from collections.abc import Awaitable, Callable

import eups # type: ignore
import eups.tags # type: ignore
import requests
import yaml

from . import models
Expand Down

0 comments on commit e6ef501

Please sign in to comment.