Removed not needed comments

This commit is contained in:
brotoskyj
2025-11-04 17:59:14 -05:00
parent a04ce62d83
commit 87b9bfa938
2 changed files with 1 additions and 5 deletions
-4
View File
@@ -60,7 +60,6 @@ pub fn pull_policy_exec_histories(
policy_names: String,
exec_types: String,
days: i64,
//output_json: bool,
) -> Py<PyString> {
let file_path: PathBuf = format!(
"{}\\cache\\chunkinator.json",
@@ -186,10 +185,7 @@ pub fn pull_policy_exec_histories(
}
progress_bar.finish_with_message("All Checkpoints Complete");
let return_data = fs::read_to_string(&writeable_filepath).unwrap();
//let json_data = serde_json::from_str(&return_data).unwrap();
PyString::new(py, &return_data).into()
//let py_any: Py<String> = serde_pyobject::to_pyobject(py, &json_data).unwrap().into();
//py_any
}
fn build_client(py: Python<'_>, py_self: &Py<PyAny>) -> Client {