Skip to content

Commit

Permalink
Import get_sjd at top level
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Nov 9, 2023
1 parent c1a52b0 commit 35300e3
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/sdsstools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# isort:skip_file
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# @Author: José Sánchez-Gallego ([email protected])
# @Date: 2023-11-09
# @Filename: __init__.py
# @License: BSD 3-clause (http://www.opensource.org/licenses/BSD-3-Clause)

from __future__ import annotations

import sys

Expand All @@ -10,10 +18,12 @@
NAME = "sdsstools"


from ._vendor import color_print, toml
from .configuration import *
from .logger import *
from .metadata import *
from ._vendor import color_print, toml
from .time import get_sjd


# This is a hack to allow doing from sdsstools.color_print import color_text
# which some code already does.
Expand Down

0 comments on commit 35300e3

Please sign in to comment.