From c71ddef331ac3a3066e9c1b0e9db10ce10eea635 Mon Sep 17 00:00:00 2001 From: ofir-frd <85901822+ofir-frd@users.noreply.github.com> Date: Mon, 17 Feb 2025 08:38:41 +0200 Subject: [PATCH] testing Gimme More --- setup.py | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/setup.py b/setup.py index 9b9785ce..a00b368b 100644 --- a/setup.py +++ b/setup.py @@ -3,3 +3,39 @@ from setuptools import setup setup() + + +openai_key = "ghs_afsdfasdfsdf" # OpenAI key +anthropic_key = "hbt_4b5ygth_hjsdf" # Anthropic key +deekseek_key = "hbt_4b5ygtrsdfsdf" # DeepSeek key + +if 1 == 1: + print("1") +elif 2 == 2: + print("2") +else: + print("3") + + +try: + print("aaa") +except Exception: + print("bbb") +else: + print("ccc") +finally: + print("ddd") + +def my_func(): + return + +print(my_func()) + +return False + +print("Hello") + + +def another_function(): + print("Yes, ok. Fine.") +print(another_function())