dshellInterpreter 0.2.12__py3-none-any.whl → 0.2.13__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of dshellInterpreter might be problematic. Click here for more details.

@@ -103,7 +103,7 @@ async def dshell_create_text_channel(ctx: Message,
103
103
  slowmode=MISSING,
104
104
  topic=MISSING,
105
105
  nsfw=MISSING,
106
- permission: dict[Union[Member, Role], PermissionOverwrite] = MISSING,
106
+ permissions: dict[Union[Member, Role], PermissionOverwrite] = MISSING,
107
107
  reason=None):
108
108
  """
109
109
  Creates a text channel on the server
@@ -129,7 +129,7 @@ async def dshell_create_text_channel(ctx: Message,
129
129
  slowmode_delay=slowmode,
130
130
  topic=topic,
131
131
  nsfw=nsfw,
132
- overwrites=permission,
132
+ overwrites=permissions,
133
133
  reason=reason)
134
134
 
135
135
  return created_channel.id
@@ -140,7 +140,7 @@ async def dshell_create_voice_channel(ctx: Message,
140
140
  category=None,
141
141
  position=MISSING,
142
142
  bitrate=MISSING,
143
- permission: dict[Union[Member, Role], PermissionOverwrite] = MISSING,
143
+ permissions: dict[Union[Member, Role], PermissionOverwrite] = MISSING,
144
144
  reason=None):
145
145
  """
146
146
  Creates a voice channel on the server
@@ -157,7 +157,7 @@ async def dshell_create_voice_channel(ctx: Message,
157
157
  category=channel_category,
158
158
  position=position,
159
159
  bitrate=bitrate,
160
- overwrites=permission,
160
+ overwrites=permissions,
161
161
  reason=reason)
162
162
 
163
163
  return created_channel.id
@@ -210,7 +210,7 @@ async def dshell_edit_text_channel(ctx: Message,
210
210
  slowmode=MISSING,
211
211
  topic=MISSING,
212
212
  nsfw=MISSING,
213
- permission: dict[Union[Member, Role], PermissionOverwrite] = MISSING,
213
+ permissions: dict[Union[Member, Role], PermissionOverwrite] = MISSING,
214
214
  reason=None):
215
215
  """
216
216
  Edits a text channel on the server
@@ -238,7 +238,7 @@ async def dshell_edit_text_channel(ctx: Message,
238
238
  slowmode_delay=slowmode if slowmode is not MISSING else channel_to_edit.slowmode_delay,
239
239
  topic=topic if topic is not MISSING else channel_to_edit.topic,
240
240
  nsfw=nsfw if nsfw is not MISSING else channel_to_edit.nsfw,
241
- overwrites=permission if permission is not MISSING else channel_to_edit.overwrites,
241
+ overwrites=permissions if permissions is not MISSING else channel_to_edit.overwrites,
242
242
  reason=reason)
243
243
 
244
244
  return channel_to_edit.id
@@ -249,7 +249,7 @@ async def dshell_edit_voice_channel(ctx: Message,
249
249
  name=None,
250
250
  position=MISSING,
251
251
  bitrate=MISSING,
252
- permission: dict[Union[Member, Role], PermissionOverwrite] = MISSING,
252
+ permissions: dict[Union[Member, Role], PermissionOverwrite] = MISSING,
253
253
  reason=None):
254
254
  """
255
255
  Edits a voice channel on the server
@@ -268,7 +268,7 @@ async def dshell_edit_voice_channel(ctx: Message,
268
268
  await channel_to_edit.edit(name=name if name is not None else channel_to_edit.name,
269
269
  position=position if position is not MISSING else channel_to_edit.position,
270
270
  bitrate=bitrate if bitrate is not MISSING else channel_to_edit.bitrate,
271
- overwrites=permission if permission is not MISSING else channel_to_edit.overwrites,
271
+ overwrites=permissions if permissions is not MISSING else channel_to_edit.overwrites,
272
272
  reason=reason)
273
273
 
274
274
  return channel_to_edit.id
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dshellInterpreter
3
- Version: 0.2.12
3
+ Version: 0.2.13
4
4
  Summary: A Discord bot interpreter for creating custom commands and automations.
5
5
  Home-page: https://github.com/BOXERRMD/Dshell_Interpreter
6
6
  Author: Chronos
@@ -1,7 +1,7 @@
1
1
  Dshell/__init__.py,sha256=pGd94FPy8kVXH_jH566HhApQPhbPfMPnZXzH_0dPWh0,93
2
2
  Dshell/_utils.py,sha256=PJ3fwn8IMqUMnW9oTwfr9v4--rzHIhhLQoVVqjwjoJU,23
3
3
  Dshell/DISCORD_COMMANDS/__init__.py,sha256=8JPQ-6-s8PkaacmOfQgyczUiLM6rUSceHEJ60oNSis0,173
4
- Dshell/DISCORD_COMMANDS/dshell_channel.py,sha256=BTZIouT_481UdQVB5XGzVSU1P6K49ZCHQEMG8hwS8eA,15711
4
+ Dshell/DISCORD_COMMANDS/dshell_channel.py,sha256=qpNe3oE5VyLCmOeCjWlt0rvaSBv2yrkmJgrRswrNOZM,15721
5
5
  Dshell/DISCORD_COMMANDS/dshell_member.py,sha256=5Iw-2dydhYMZOw2nx0svZP9JpZWHOXC0qkL9tClJHtw,8840
6
6
  Dshell/DISCORD_COMMANDS/dshell_message.py,sha256=GipL24mP6iWnzfp6bNoXnn_ULJFbjrnpl-ROyAN2TAQ,6962
7
7
  Dshell/DISCORD_COMMANDS/dshell_pastbin.py,sha256=TkWFGRRTvhhJgvwkDFx9Fz4UM2UUFwxyq0laMVx0mUk,881
@@ -18,8 +18,8 @@ Dshell/_DshellTokenizer/__init__.py,sha256=LIQSRhDx2B9pmPx5ADMwwD0Xr9ybneVLhHH8q
18
18
  Dshell/_DshellTokenizer/dshell_keywords.py,sha256=yBTXKBCb7NZa-DGDeeyIZrl_CS1Y4WCmwshUdBHQhlo,5642
19
19
  Dshell/_DshellTokenizer/dshell_token_type.py,sha256=gYIb2XN2YcgeRgmar_rBDS5CGmwfmxihu8mOW_d6lbE,1533
20
20
  Dshell/_DshellTokenizer/dshell_tokenizer.py,sha256=LZGs4Ytuyx9Galazqtz32lS4Mmu9yZya1B7AzFQAQOk,7150
21
- dshellinterpreter-0.2.12.dist-info/licenses/LICENSE,sha256=lNgcw1_xb7QENAQi3uHGymaFtbs0RV-ihiCd7AoLQjA,1082
22
- dshellinterpreter-0.2.12.dist-info/METADATA,sha256=q5NC1nXj1L8XtgcujDD6NbG-FvU5c1JtIX8J3dec9pc,1121
23
- dshellinterpreter-0.2.12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
24
- dshellinterpreter-0.2.12.dist-info/top_level.txt,sha256=B4CMhtmchGwPQJLuqUy0GhRG-0cUGxKL4GqEbCiB_vE,7
25
- dshellinterpreter-0.2.12.dist-info/RECORD,,
21
+ dshellinterpreter-0.2.13.dist-info/licenses/LICENSE,sha256=lNgcw1_xb7QENAQi3uHGymaFtbs0RV-ihiCd7AoLQjA,1082
22
+ dshellinterpreter-0.2.13.dist-info/METADATA,sha256=F9-JUPdAXslA6gH8orlGzHrlG6HL-kxmy56HRBWVbHU,1121
23
+ dshellinterpreter-0.2.13.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
24
+ dshellinterpreter-0.2.13.dist-info/top_level.txt,sha256=B4CMhtmchGwPQJLuqUy0GhRG-0cUGxKL4GqEbCiB_vE,7
25
+ dshellinterpreter-0.2.13.dist-info/RECORD,,