Skip to content

Commit

Permalink
Rename felis.type to felis.constrained
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeeeT committed Jun 11, 2024
1 parent 52a73e1 commit be26539
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import NewType

import felis.predicate.float
from felis.type import smart_constructor
from felis.constrained import smart_constructor

__all__ = [
"Negative",
Expand Down
2 changes: 1 addition & 1 deletion src/felis/type/int.py β†’ src/felis/constrained/int.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import NewType

import felis.predicate.float
from felis.type import smart_constructor
from felis.constrained import smart_constructor

__all__ = [
"Negative",
Expand Down
2 changes: 1 addition & 1 deletion src/felis/type/str.py β†’ src/felis/constrained/str.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import NewType

import felis.predicate.bool
from felis.type import smart_constructor
from felis.constrained import smart_constructor

__all__ = ["NonEmpty", "non_empty"]

Expand Down

0 comments on commit be26539

Please sign in to comment.