mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-27 11:20:45 +08:00
11 lines
189 B
Python
11 lines
189 B
Python
|
|
from zipline.utils.sentinel import sentinel
|
|
|
|
|
|
NotSpecified = sentinel(
|
|
'NotSpecified',
|
|
'Singleton sentinel value used for Term defaults.',
|
|
)
|
|
|
|
NotSpecifiedType = type(NotSpecified)
|