Skip to content

Commit 393fa88

Browse files
brunovcostaclaude
andcommitted
Rename warnings.py to check.py
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f6dd438 commit 393fa88

4 files changed

Lines changed: 3 additions & 3 deletions

File tree

abstra_sugar/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .sugar import SugarWarning, sugar
2-
from .warnings import check_source
2+
from .check import check_source
33

44
__all__ = ["sugar", "SugarWarning", "check_source"]

abstra_sugar/check_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .warnings import check_source
1+
from .check import check_source
22

33

44
# --- explicit div ---

abstra_sugar/sugar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from .compiler import compile
55
from .lexer import scan
66
from .parser import parse
7-
from .warnings import _check_tokens
7+
from .check import _check_tokens
88

99

1010
def sugar(text: str, data: Optional[dict] = None) -> str:

0 commit comments

Comments
 (0)