disunity
Advanced tools
+1
-1
| Metadata-Version: 2.1 | ||
| Name: disunity | ||
| Version: 0.1.11 | ||
| Version: 0.1.12 | ||
| Summary: Python framework for Discord interactions using a web server | ||
@@ -5,0 +5,0 @@ Author: Tadeo Murillo, |
+1
-1
@@ -13,3 +13,3 @@ [build-system] | ||
| name = "disunity" | ||
| version = "0.1.11" | ||
| version = "0.1.12" | ||
| authors = [ | ||
@@ -16,0 +16,0 @@ {name="Tadeo Murillo"}, |
| Metadata-Version: 2.1 | ||
| Name: disunity | ||
| Version: 0.1.11 | ||
| Version: 0.1.12 | ||
| Summary: Python framework for Discord interactions using a web server | ||
@@ -5,0 +5,0 @@ Author: Tadeo Murillo, |
@@ -288,3 +288,3 @@ import asyncio | ||
| await coroutine(ctx) | ||
| await self.after_interaction(ctx) | ||
| await self.global_after_interaction(ctx) | ||
@@ -295,3 +295,3 @@ asyncio.create_task(combined_task(ctx)) | ||
| response = await coroutine(ctx) | ||
| asyncio.create_task(self.after_interaction(ctx)) | ||
| asyncio.create_task(self.global_after_interaction(ctx)) | ||
| return jsonify(response) | ||
@@ -328,11 +328,11 @@ | ||
| context.acked = True | ||
| async def combined_task(ctx): | ||
| async def combined_task(context): | ||
| await component(context) | ||
| await self.after_interaction(ctx) | ||
| await self.global_after_interaction(context) | ||
| asyncio.create_task(combined_task(ctx)) | ||
| asyncio.create_task(combined_task(context)) | ||
| return jsonify(response) | ||
| maybe_response = await component(context) | ||
| asyncio.create_task(self.after_interaction(ctx)) | ||
| asyncio.create_task(self.global_after_interaction(context)) | ||
| return jsonify(maybe_response) | ||
@@ -378,3 +378,3 @@ | ||
| maybe_response = await component(context) | ||
| asyncio.create_task(self.after_interaction(ctx)) | ||
| asyncio.create_task(self.global_after_interaction(context)) | ||
| return jsonify(maybe_response) |
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
61661
0.09%