make 'cargo fmt' happy

This commit is contained in:
B. Petersen
2020-01-28 13:14:14 +01:00
parent 10f26f17ba
commit 80dc7bfc52
3 changed files with 4 additions and 5 deletions

View File

@@ -106,10 +106,10 @@ if __name__ == "__main__":
raise SystemExit("usage: update.py DIR_WITH_MD_FILES > data.rs")
out_all = ("// file generated by src/provider/update.py\n\n"
"use crate::provider::*;\n"
"use crate::provider::Protocol::*;\n"
"use crate::provider::Socket::*;\n"
"use crate::provider::UsernamePattern::*;\n"
"use crate::provider::*;\n"
"use std::collections::HashMap;\n\n"
"lazy_static::lazy_static! {\n\n")
@@ -119,4 +119,4 @@ if __name__ == "__main__":
out_all += out_domains;
out_all += " ].iter().copied().collect();\n}\n"
print(out_all)
print(out_all)