thunil / TecoGAN

This repo contains source code and materials for the TEmporally COherent GAN SIGGRAPH project.
Apache License 2.0
5.95k stars 1.13k forks source link

Removed a case of the manual indexer pitfall #118

Open NaelsonDouglas opened 2 years ago

NaelsonDouglas commented 2 years ago

Problem: There was a part on the code which was implemented using the manual iterator pitfall. It was detected using Pylint, under the code C0200. https://vald-phoenix.github.io/pylint-errors/plerr/errors/refactoring/C0200.html

Solution: Applied a simple refactoring to remove it.