# SPDX-FileCopyrightText: Peter Pentchev # SPDX-License-Identifier: BSD-2-Clause """Common definitions for the weekly challenge 315 tasks.""" from __future__ import annotations import typing if typing.TYPE_CHECKING: from typing import Final """The library version, semver-like.""" VERSION: Final = "0.1.0"