Export maybe and removal sentinels from __init__

Otherwise, these aren't exposed publicly anywhere.

This was @DragonMinded's change, I'm just importing it to github.
This commit is contained in:
Benjamin Woodruff 2019-06-11 11:37:09 -07:00
parent 1dab051ddb
commit 31c0ee65a2

View file

@ -2,3 +2,9 @@
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from libcst._maybe_sentinel import MaybeSentinel
from libcst._removal_sentinel import RemovalSentinel
__all__ = ["MaybeSentinel", "RemovalSentinel"]