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
+1 -1
View File
@@ -17,7 +17,7 @@ dependencies = [
[[package]] [[package]]
name = "airlock_libs" name = "airlock_libs"
version = "1.0.0-alpha" version = "1.0.0"
dependencies = [ dependencies = [
"chrono", "chrono",
"indicatif", "indicatif",
-4
View File
@@ -60,7 +60,6 @@ pub fn pull_policy_exec_histories(
policy_names: String, policy_names: String,
exec_types: String, exec_types: String,
days: i64, days: i64,
//output_json: bool,
) -> Py<PyString> { ) -> Py<PyString> {
let file_path: PathBuf = format!( let file_path: PathBuf = format!(
"{}\\cache\\chunkinator.json", "{}\\cache\\chunkinator.json",
@@ -186,10 +185,7 @@ pub fn pull_policy_exec_histories(
} }
progress_bar.finish_with_message("All Checkpoints Complete"); progress_bar.finish_with_message("All Checkpoints Complete");
let return_data = fs::read_to_string(&writeable_filepath).unwrap(); 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() 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 { fn build_client(py: Python<'_>, py_self: &Py<PyAny>) -> Client {