mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-13 02:55:22 +08:00
14 lines
419 B
Python
14 lines
419 B
Python
# -*- 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:`_NOOP` sentinel, for internally signaling "no-op"."""
|
|
|
|
from ._marker import _Marker
|
|
|
|
|
|
_NOOP = _Marker('NO-OP')
|