From 2bc4c18837b615fbb45292d7b9344548b725ca68 Mon Sep 17 00:00:00 2001 From: Shai Katz Date: Thu, 29 Feb 2024 13:07:32 +0200 Subject: [PATCH] Cleanup --- .openapi-generator/FILES | 59 ------------------------------------- .openapi-generator/VERSION | 1 - .vscode/launch.json | 25 ---------------- monday-code-example/main.py | 2 +- 4 files changed, 1 insertion(+), 86 deletions(-) delete mode 100644 .openapi-generator/FILES delete mode 100644 .openapi-generator/VERSION delete mode 100644 .vscode/launch.json diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES deleted file mode 100644 index b500b5a..0000000 --- a/.openapi-generator/FILES +++ /dev/null @@ -1,59 +0,0 @@ -.github/workflows/python.yml -.gitignore -.gitlab-ci.yml -.openapi-generator-ignore -.travis.yml -README.md -docs/GetStorage404Response.md -docs/IncrementCounterParams.md -docs/Period.md -docs/PublishMessageParams.md -docs/PublishMessageResponse.md -docs/QueueApi.md -docs/SecretApi.md -docs/SecureStorageApi.md -docs/StorageApi.md -docs/StorageDataContract.md -docs/ValidateSecretParams.md -docs/ValidateSecretResponse.md -git_push.sh -monday_sdk/__init__.py -monday_sdk/api/__init__.py -monday_sdk/api/queue_api.py -monday_sdk/api/secret_api.py -monday_sdk/api/secure_storage_api.py -monday_sdk/api/storage_api.py -monday_sdk/api_client.py -monday_sdk/api_response.py -monday_sdk/configuration.py -monday_sdk/exceptions.py -monday_sdk/models/__init__.py -monday_sdk/models/get_storage404_response.py -monday_sdk/models/increment_counter_params.py -monday_sdk/models/period.py -monday_sdk/models/publish_message_params.py -monday_sdk/models/publish_message_response.py -monday_sdk/models/storage_data_contract.py -monday_sdk/models/validate_secret_params.py -monday_sdk/models/validate_secret_response.py -monday_sdk/py.typed -monday_sdk/rest.py -pyproject.toml -requirements.txt -setup.cfg -setup.py -test-requirements.txt -test/__init__.py -test/test_get_storage404_response.py -test/test_increment_counter_params.py -test/test_period.py -test/test_publish_message_params.py -test/test_publish_message_response.py -test/test_queue_api.py -test/test_secret_api.py -test/test_secure_storage_api.py -test/test_storage_api.py -test/test_storage_data_contract.py -test/test_validate_secret_params.py -test/test_validate_secret_response.py -tox.ini diff --git a/.openapi-generator/VERSION b/.openapi-generator/VERSION deleted file mode 100644 index c9e125b..0000000 --- a/.openapi-generator/VERSION +++ /dev/null @@ -1 +0,0 @@ -7.4.0-SNAPSHOT diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 2c92310..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "Python Debugger: Flask", - "type": "debugpy", - "request": "launch", - "module": "flask", - "env": { - "FLASK_APP": "main.py", - "FLASK_DEBUG": "1" - }, - "args": [ - "run", - "--no-debugger", - "--no-reload" - ], - "jinja": true, - "autoStartBrowser": false - } - ] -} \ No newline at end of file diff --git a/monday-code-example/main.py b/monday-code-example/main.py index 0194c47..bae0877 100644 --- a/monday-code-example/main.py +++ b/monday-code-example/main.py @@ -16,7 +16,7 @@ # Defining the host is optional and defaults to http://localhost:59999 # See configuration.py for a list of all supported configuration parameters. -configuration = monday_sdk.Configuration(host="http://localhost:59999") +configuration = monday_sdk.Configuration() app = Flask(__name__)