1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-03-01 00:55:52 +00:00
bazarr/libs/bidict/_miss.py

15 lines
433 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# Copyright 2009-2019 Joshua Bronson. All Rights Reserved.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""Provides the :obj:`_MISS` sentinel, for internally signaling "missing/not found"."""
from ._marker import _Marker
_MISS = _Marker('MISSING')