mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-03 14:04:51 +00:00
Accept None as plugins_dir
This commit is contained in:
parent
29c3142958
commit
f4146a8779
1 changed files with 1 additions and 1 deletions
|
|
@ -169,7 +169,7 @@ class Client(Methods, BaseClient):
|
||||||
workers: int = BaseClient.WORKERS,
|
workers: int = BaseClient.WORKERS,
|
||||||
workdir: str = BaseClient.WORKDIR,
|
workdir: str = BaseClient.WORKDIR,
|
||||||
config_file: str = BaseClient.CONFIG_FILE,
|
config_file: str = BaseClient.CONFIG_FILE,
|
||||||
plugins_dir: str = BaseClient.PLUGINS_DIR):
|
plugins_dir: str or None = BaseClient.PLUGINS_DIR):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
|
||||||
self.session_name = session_name
|
self.session_name = session_name
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue