Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

disunity

Package Overview
Dependencies
Maintainers
2
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

disunity - npm Package Compare versions

Comparing version
0.1.11
to
0.1.12
+1
-1
PKG-INFO
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,

@@ -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)