Remove dbg

Agus Zubiaga created

Change summary

crates/zeta_cli/src/example.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/zeta_cli/src/example.rs 🔗

@@ -167,7 +167,7 @@ impl NamedExample {
                         let key = text[..eq_pos].trim();
                         let value = text[eq_pos + 1..].trim();
                         match key {
-                            "repository_url" => repository_url = dbg!(value.to_string()),
+                            "repository_url" => repository_url = value.to_string(),
                             "commit" => commit = value.to_string(),
                             _ => {}
                         }