You shouldn't use this function directly. It's used internally to recognize when a default value has been overwritten, even if the new value is `None`.
(value: DefaultType)
| 188 | |
| 189 | |
| 190 | def Default(value: DefaultType) -> DefaultType: |
| 191 | class="st">""" |
| 192 | You shouldn&class="cm">#x27;t use this function directly. |
| 193 | |
| 194 | It&class="cm">#x27;s used internally to recognize when a default value has been overwritten, even |
| 195 | if the new value is `None`. |
| 196 | class="st">""" |
| 197 | return DefaultPlaceholder(value) class="cm"># type: ignore |
| 198 | |
| 199 | |
| 200 | class CommandInfo: |