-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
<Enhancement>[PyutClass]: <Simple Update>
[Need more support from untanglepyut, oglio, and ogl] [#1]
- Loading branch information
Humberto Sanchez II
committed
Jan 12, 2024
1 parent
bdb37b7
commit 618f74c
Showing
3 changed files
with
17 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__: str = '2.0.1' | ||
__version__: str = '2.1.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
from enum import Enum | ||
|
||
|
||
class PyutDisplayMethods(Enum): | ||
""" | ||
Use to indicate if a specific class wishes to display certain | ||
dunder methods | ||
""" | ||
UNSPECIFIED = 'Unspecified' | ||
DISPLAY = 'Display' | ||
DO_NOT_DISPLAY = 'Do Not Display' |