Skip to content

Commit

Permalink
Manual codestyle fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
neob91-close committed Dec 11, 2024
1 parent cbbe6eb commit 6451ade
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion inbox/crispin.py
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ def folder_prefix(self) -> str:
# Unfortunately, some servers don't support the NAMESPACE command.
# In this case, assume that there's no folder prefix.
if self.conn.has_capability("NAMESPACE"):
folder_prefix, folder_separator = self.conn.namespace()[0][0]
folder_prefix, __ = self.conn.namespace()[0][0]
return folder_prefix
else:
return ""
Expand Down
2 changes: 1 addition & 1 deletion inbox/util/testutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def create_test_db() -> None:
)

subprocess.check_call(
f"mysql -h {host} -u{user} -p{password} " f'-e "{cmd}"', shell=True
f'mysql -h {host} -u{user} -p{password} -e "{cmd}"', shell=True
)


Expand Down

0 comments on commit 6451ade

Please sign in to comment.