Skip to content

Commit 8c1fe30

Browse files
committed
fix linting
1 parent cdb1c7e commit 8c1fe30

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/wechaty/plugin.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,9 @@ def cache_dir(self, value: str) -> None:
441441
value (str): the new cache dir
442442
"""
443443
if not self._cache_dir:
444-
self.logger.warning(f'there is already cache_dir<{self._cache_dir}>')
444+
self.logger.warning(
445+
'there is already cache_dir<%s>', self._cache_dir
446+
)
445447

446448
os.makedirs(value, exist_ok=True)
447449
self._cache_dir = value

0 commit comments

Comments
 (0)