tomography / tomopy-cli

A command-line-interface for tomopy
https://tomopycli.readthedocs.io
Other
2 stars 8 forks source link

Unsolved conflict during #75 pull request causes read_tomo error #76

Open decarlof opened 3 years ago

decarlof commented 3 years ago

75 is causing:

proj, flat, dark, theta, params_rotation_axis_ignored = file_io.read_tomo(sino, pproj, params, True) TypeError: read_tomo() takes from 2 to 3 positional arguments but 4 were given

I think this is because of the unsolved conflict at:

Screen Shot 2021-08-11 at 11 23 46 AM

is possible that the last changes were made on a local version that was not current.

It should be simple to solve by just replacing:

read_tomo(sino, params, ignore_flip = False):

with the new:

read_tomo(sino, proj, params, ignore_flip = False):