8 lines
149 B
Python
8 lines
149 B
Python
"""备注范围处理。"""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
def normalize_note_scope(note: str | None) -> str:
|
|
return (note or "").strip()
|