8000 Remove type annotations from Frequency namespace · tableau/server-client-python@76c9269 · GitHub
[go: up one dir, main page]

Skip to content

Commit 76c9269

Browse files
committed
Remove type annotations from Frequency namespace
1 parent 1dc5df3 commit 76c9269

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tableauserverclient/models/data_alert_item.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717

1818
class DataAlertItem(object):
1919
class Frequency:
20-
Once: str = "Once"
21-
Frequently: str = "Frequently"
22-
Hourly: str = "Hourly"
23-
Daily: str = "Daily"
24-
Weekly: str = "Weekly"
20+
Once = "Once"
21+
Frequently = "Frequently"
22+
Hourly = "Hourly"
23+
Daily = "Daily"
24+
Weekly = "Weekly"
2525

2626
def __init__(self):
2727
self._id: Optional[str] = None

0 commit comments

Comments
 (0)
0