-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
@@ -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. | ||
|