Skip to content

Commit

Permalink
build(deps-dev): bump the pulumi-dev group in /pulumi with 2 updates (#…
Browse files Browse the repository at this point in the history
…106)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Edoardo Rosa <6991986+notdodo@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and notdodo authored Jan 11, 2025
1 parent a20ec72 commit 3bffcec
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 28 deletions.
46 changes: 23 additions & 23 deletions pulumi/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pulumi/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ diagrams = "^0.24.1"
[tool.poetry.group.dev.dependencies]
awscli-local = "^0.22.0"
mypy = {extras = ["faster-cache"], version = "^1.14.1"}
ruff = "^0.8.6"
pydantic = "^2.10.4"
ruff = "^0.9.1"
pydantic = "^2.10.5"
types-requests = "^2.32.0.20241016"

[tool.ruff]
Expand Down
6 changes: 3 additions & 3 deletions pulumi/telegram_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class _TelegramWebhookProvider(ResourceProvider):

def create(self, props: dict[str, Any]) -> CreateResult:
response = requests.post(
f"https://api.telegram.org/bot{props["token"]}/setWebhook",
f"https://api.telegram.org/bot{props['token']}/setWebhook",
json={
"url": props["url"],
"allowed_updates": props["react_on"],
Expand All @@ -44,7 +44,7 @@ def read(
props: dict[str, Any],
) -> ReadResult:
response = requests.get(
f"https://api.telegram.org/bot{props["token"]}/getWebhookInfo",
f"https://api.telegram.org/bot{props['token']}/getWebhookInfo",
timeout=10,
)

Expand All @@ -59,7 +59,7 @@ def update(
newInputs: dict[str, Any], # noqa: N803
) -> UpdateResult:
response = requests.post(
f"https://api.telegram.org/bot{newInputs["token"]}/setWebhook",
f"https://api.telegram.org/bot{newInputs['token']}/setWebhook",
json={
"url": newInputs["url"],
"allowed_updates": newInputs["react_on"],
Expand Down

0 comments on commit 3bffcec

Please sign in to comment.