We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b1f7b6 commit d0dbc46Copy full SHA for d0dbc46
src/python.rs
@@ -71,23 +71,6 @@ struct Prettier {}
71
struct GHWorkflowCI {}
72
73
fn append_eof(mut s: String) -> String {
74
- // let os = env::consts::OS;
75
- // if os == "windows" {
76
- // println!("windows append");
77
- // s.push_str("\r\n");
78
- // } else if os == "macos" {
79
- // println!("macos append");
80
- // s.push_str("\nblah");
81
82
-
83
- // // s.push('\n');
84
- // } else if os == "linux" {
85
- // println!("linux append");
86
- // s.push('\n');
87
- // } else {
88
- // println!("else append");
89
90
- // }
91
s.push('\n');
92
s
93
}
0 commit comments