Skip to content

Commit 1f846fa

Browse files
committed
Formatting
1 parent a3edc42 commit 1f846fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cogs/plugins.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ async def load_plugin(self, plugin):
199199
venv = hasattr(sys, "real_prefix") or hasattr(sys, "base_prefix") # in a virtual env
200200
user_install = " --user" if not venv else ""
201201
proc = await asyncio.create_subprocess_shell(
202-
f"\"{sys.executable}\" -m pip install --upgrade{user_install} -r {req_txt} -q -q --user",
202+
f'"{sys.executable}" -m pip install --upgrade{user_install} -r {req_txt} -q -q --user',
203203
stderr=PIPE,
204204
stdout=PIPE,
205205
)

core/thread.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ async def _close(
339339
sneak_peak = content.replace("\n", "")
340340
else:
341341
sneak_peak = "No content"
342-
342+
343343
if self.channel.nsfw:
344344
_nsfw = "NSFW-"
345345
else:

0 commit comments

Comments
 (0)