Merge pull request #18 from fluunke/no-timeout

Remove timeout from kalk_cli
This commit is contained in:
PaddiM8 2021-01-30 16:51:16 +01:00 committed by GitHub
commit 8ac228d02c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,7 @@ fn default_action(context: &Context) {
};
let mut parser_context = parser::Context::new()
.set_angle_unit(&angle_unit)
.set_timeout(Some(5));
.set_timeout(None);
let precision = context.int_flag("precision").unwrap_or(53isize) as u32;
if let Ok(input_file_path) = context.string_flag("input-file") {