Skip to content

Commit

Permalink
fix decimal formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 committed Oct 28, 2021
1 parent 28e42e4 commit e7c5e7e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -357,7 +357,7 @@ def generate_profiles(

end_time = time.perf_counter()
logger.info(
f"Profiling {len(requests)} table(s) finished in {end_time - start_time} seconds"
f"Profiling {len(requests)} table(s) finished in {(end_time - start_time):.3f} seconds"
)

def generate_profile_from_request(
Expand Down

0 comments on commit e7c5e7e

Please sign in to comment.