Skip to content

Commit fdd8007

Browse files
committed
Remove env vars from push templates example
1 parent bf8a981 commit fdd8007

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

examples/templates/push_templates.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@
1717
"""
1818

1919

20-
SOURCE_SERVER_ID = os.environ.get("POSTMARK_SOURCE_SERVER_ID", "src-server-id")
21-
DESTINATION_SERVER_ID = os.environ.get(
22-
"POSTMARK_DESTINATION_SERVER_ID", "dst-server-id"
23-
)
20+
SOURCE_SERVER_ID = "id-of-the-source-server"
21+
DESTINATION_SERVER_ID = "id-of-the-destination-server"
2422

2523

2624
async def main():

0 commit comments

Comments
 (0)