remove clippy from CI for now, as it's too strict

This commit is contained in:
Henrik Friedrichsen
2019-04-15 22:07:54 +02:00
parent 8738472e87
commit 0bbba3c57d
3 changed files with 6 additions and 8 deletions

View File

@@ -226,7 +226,8 @@ impl Spotify {
let config = SessionConfig::default();
let handle = core.handle();
core.run(Session::connect(config, credentials, None, handle)).unwrap();
core.run(Session::connect(config, credentials, None, handle))
.unwrap();
});
th.join().is_ok()
}