Source code for polartoolkit

# Copyright (c) 2024 The Polartoolkit Developers.
# Distributed under the terms of the MIT License.
# SPDX-License-Identifier: MIT
#
# This code is part of the package:
# PolarToolkit (https://github.com/mdtanker/polartoolkit)
#
"""Helpful tools for polar researchers"""

from __future__ import annotations

[docs] __version__ = "1.0.6"
import logging
[docs] logger = logging.getLogger(__name__)
logger.addHandler(logging.NullHandler())