We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00b7b1f commit 6788152Copy full SHA for 6788152
aishell/models/__init__.py
@@ -1 +1 @@
1
-from .open_ai_response_model import OpenAIResponseModel as OpenAIResponseModel
+from .open_ai_response_model import OpenAIResponseModel as OpenAIResponseModel
aishell/utils/__init__.py
-from .make_executable_command import make_executable_command as make_executable_command
+from .make_executable_command import make_executable_command as make_executable_command
aishell/utils/make_executable_command.py
@@ -1,6 +1,4 @@
def make_executable_command(command: str) -> str:
2
- # starting '\n' or trailing '\n' should be replaced as ''
3
- # starting ' ' or trailing ' ' should be replaced as ''
4
if command.startswith('\n'):
5
command = command[1:]
6
if command.endswith('\n'):
0 commit comments