diff options
author | Bardi Harborow <bardi@bardiharborow.com> | 2019-07-12 04:43:41 +1000 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2019-07-11 21:49:56 +0200 |
commit | 5a4ac0fe462faf2a3ba3b3f4334863cdb4bbf45a (patch) | |
tree | 1751b688ca625f5933df76b47747a685510f3909 /askama_derive/src/generator.rs | |
parent | 4bd29679c022a56b9fa8790d9095cdf8b0ee19b8 (diff) | |
download | askama-5a4ac0fe462faf2a3ba3b3f4334863cdb4bbf45a.tar.gz askama-5a4ac0fe462faf2a3ba3b3f4334863cdb4bbf45a.tar.bz2 askama-5a4ac0fe462faf2a3ba3b3f4334863cdb4bbf45a.zip |
Implement selected clippy recommendations.
Diffstat (limited to 'askama_derive/src/generator.rs')
-rw-r--r-- | askama_derive/src/generator.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/askama_derive/src/generator.rs b/askama_derive/src/generator.rs index aa91de0..7757016 100644 --- a/askama_derive/src/generator.rs +++ b/askama_derive/src/generator.rs @@ -109,7 +109,7 @@ impl<'a> Generator<'a> { ); // Make sure the compiler understands that the generated code depends on the template files. - for (path, _) in self.contexts { + for path in self.contexts.keys() { // Skip the fake path of templates defined in rust source. let path_is_valid = match self.input.source { Source::Path(_) => true, |