proud-dentist-22844
05/19/2021, 5:11 PMdigest = await Get(
Digest,
CreateDigest([FileContent(entry_points_txt_path, entry_points_txt_contents)]),
)
which gives me this error:
TypeError: Invalid Get. The third argument `CreateDigest([FileContent(path=contrib/runners/noop_runner.egg-info/entry_points.txt, content=(len:59), is_executable=False)])` must have the exact same type as the second argument, <class 'pants.engine.internals.native_engine.PyDigest'>, but had the type <class 'pants.engine.fs.CreateDigest'>.
Am I doing something wrong with CreateDigest?proud-dentist-22844
05/19/2021, 5:15 PMdigest = await Get(
Digest,
CreateDigest([FileContent(entry_points_txt_path, entry_points_txt_contents)])
)
Why does it think I provided three params when I have two commas?hundreds-father-404
05/19/2021, 5:23 PM