mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-14 11:44:45 +08:00
15 lines
419 B
Python
15 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')
|