Skip to content

Commit

Permalink
fix: remove accidentally left around eprintln (#612)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret authored Feb 16, 2024
1 parent 5617078 commit cf56930
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/generation/generate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2238,7 +2238,6 @@ fn gen_import_callee<'a>(node: &Import<'a>, _context: &mut Context<'a>) -> Print
let mut items = PrintItems::new();
items.push_str("import");
// for now, just be simple and force this on one line
eprintln!("NODE: {:?}", node.phase());
match node.phase() {
ImportPhase::Evaluation => {
// nothing to do
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
#![allow(clippy::needless_lifetimes)] // todo: enable this in the future
#![deny(clippy::disallowed_methods)]
#![deny(clippy::disallowed_types)]
#![deny(clippy::print_stderr)]
#![deny(clippy::print_stdout)]

pub mod configuration;
mod format_text;
Expand Down

0 comments on commit cf56930

Please sign in to comment.