_cropped_file_size should be an int, fixes #1639

This commit is contained in:
Dave Halter
2020-07-23 01:32:37 +02:00
parent ae2becb531
commit e86afc1705

View File

@@ -98,7 +98,7 @@ parse the parts again that have changed, while reusing the rest of the syntax
tree.
"""
_cropped_file_size = 10e6 # 1 Megabyte
_cropped_file_size = int(10e6) # 1 Megabyte
"""
Jedi gets extremely slow if the file size exceed a few thousand lines.
To avoid getting stuck completely Jedi crops the file at some point.