Skip to content

Commit

Permalink
Update cli.py
Browse files Browse the repository at this point in the history
quick fix: removing deprecated preciseness keyword in cli.
  • Loading branch information
LKlinke committed Dec 11, 2024
1 parent 36a202c commit 47e3cd4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions prodigy/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,7 @@ def main(ctx, program_file: IO, input_dist: str,
if input_dist is None:
dist = config.factory.one(*program.variables.keys())
else:
dist = config.factory.from_expr(input_dist,
*program.variables.keys(),
preciseness=1.0)
dist = config.factory.from_expr(input_dist, *program.variables.keys())

logger.debug("Start analysis.")
start = time.perf_counter()
Expand Down

0 comments on commit 47e3cd4

Please sign in to comment.