浏览代码

[py3] Upgrade ipython module to not break the shell command

TypeError: required field "type_ignores" missing from Module
Romain Rigaux 4 年之前
父节点
当前提交
5caeba886a
共有 2 个文件被更改,包括 4 次插入2 次删除
  1. 2 0
      desktop/core/requirements.txt
  2. 2 2
      desktop/libs/azure/src/azure/abfs/abfs.py

+ 2 - 0
desktop/core/requirements.txt

@@ -45,6 +45,7 @@ mysqlclient==1.4.6
 nose==1.3.7
 openpyxl==2.6.2
 phoenixdb==1.0.1
+prompt-toolkit==2.0.10
 protobuf==3.17.0
 pyformance==0.3.2
 pylint==2.6.0
@@ -73,3 +74,4 @@ thrift==0.13.0
 thrift-sasl==0.4.2
 git+https://github.com/gethue/django-babel.git
 git+https://github.com/gethue/django-mako.git
+werkzeug==2.0.1  # Should remove it here and from devtools.mk

+ 2 - 2
desktop/libs/azure/src/azure/abfs/abfs.py

@@ -195,7 +195,7 @@ class ABFS(object):
 
     if dir_name == '':
       return ABFSStat.for_filesystem(self._statsf(file_system, params, **kwargs), path)
-      
+
     return ABFSStat.for_single(self._stats(file_system + '/' + dir_name, params, **kwargs), path)
 
   def listdir_stats(self, path, params=None, **kwargs):
@@ -334,7 +334,7 @@ class ABFS(object):
     """
     Joins two paths together
     """
-    return Init_ABFS.join(first,*comp_list)
+    return Init_ABFS.join(first, *comp_list)
 
   # Create Files,directories, or File Systems
   # --------------------------------