Traceback (most recent call last): File "C:\Users\Administrator\anaconda3\lib\site-packages\ddt.py", line 220, in wrapper return func(self, *args, **kwargs) TypeError: test_yam() takes 1 positional argument but 2 were given
时间: 2023-10-07 21:11:10 浏览: 176
这个错误信息的意思是,您在使用ddt库运行test_yam()测试方法时,传递了不正确的参数数量。test_yam()方法只需要一个参数,但是您提供了两个参数。
可能是您在使用ddt库时,对@data装饰器的使用有误。建议检查一下代码,确保传递的参数数量与测试方法的参数数量匹配。如果问题仍然存在,可以提供更多的代码细节,以便更好地帮助您解决问题。
相关问题
Traceback (most recent call last): File "G:\anaconda\Scripts\jupyter-notebook-script.py", line 6, in from notebook.notebookapp import main File "G:\anaconda\lib\site-packages\notebook\notebookapp.py", line 43, in from jinja2 import Environment, FileSystemLoader File "G:\anaconda\lib\site-packages\jinja2\__init__.py", line 12, in from .environment import Environment File "G:\anaconda\lib\site-packages\jinja2\environment.py", line 25, in from .defaults import BLOCK_END_STRING File "G:\anaconda\lib\site-packages\jinja2\defaults.py", line 3, in from .filters import FILTERS as DEFAULT_FILTERS # noqa: F401 File "G:\anaconda\lib\site-packages\jinja2\filters.py", line 13, in from markupsafe import soft_unicode ImportError: cannot import name 'soft_unicode' from 'markupsafe' (G:\anaconda\lib\site-packages\markupsafe\__init__.py)报错如何解决
这个报错提示是无法从markupsafe模块中导入soft_unicode函数。这可能是由于markupsafe模块的版本问题导致的。
您可以尝试使用以下命令更新markupsafe模块:
```
pip install --upgrade markupsafe
```
如果更新markupsafe模块无法解决问题,您可以尝试重新安装jupyter notebook:
```
pip uninstall jupyter notebook
pip install jupyter notebook
```
如果问题仍未解决,请尝试卸载并重新安装Anaconda,确保使用最新版本的Anaconda。
Traceback (most recent call last): File "C:\anaconda\lib\site-packages\send2trash\plat_win_modern.py", line 61, in send2trash result = fileop.PerformOperations() pywintypes.com_error: (-2144927705, 'OLE error 0x80270027', None, None) During handling of the above exception, another exception occurred: Traceback (most recent call last): File "C:\anaconda\lib\site-packages\tornado\web.py", line 1704, in _execute result = await result File "C:\anaconda\lib\site-packages\tornado\gen.py", line 234, in wrapper yielded = ctx_run(next, result) File "C:\anaconda\lib\site-packages\notebook\services\contents\handlers.py", line 242, in delete yield maybe_future(cm.delete(path)) File "C:\anaconda\lib\site-packages\notebook\services\contents\manager.py", line 279, in delete self.delete_file(path) File "C:\anaconda\lib\site-packages\notebook\services\contents\filemanager.py", line 533, in delete_file send2trash(os_path) File "C:\anaconda\lib\site-packages\send2trash\plat_win_modern.py", line 69, in send2trash raise OSError(None, error.strerror, path, error.hresult) OSError: [WinError -2144927705] OLE error 0x80270027: 'C:\\Users\\白欣玉\\Untitled Folder'
这个错误是由于send2trash库在Windows系统上的一个问题引起的。send2trash库用于将文件或文件夹发送到回收站,但在某些情况下可能会出现兼容性问题。为了解决这个问题,您可以尝试以下方法来重命名文件夹:
1. 关闭Jupyter Notebook或JupyterLab。
2. 手动重命名文件夹:在文件资源管理器中,找到要重命名的文件夹,右键单击它,选择 "重命名",然后输入新的文件夹名称。
3. 打开Jupyter Notebook或JupyterLab,检查文件夹是否已成功重命名。
如果您仍然无法重命名文件夹,请确保您具有适当的权限来修改该文件夹,并且没有其他进程正在使用该文件夹。
阅读全文