From: Florent Kermarrec Date: Mon, 13 Apr 2015 08:58:45 +0000 (+0200) Subject: liteeth: pep8 (W292) X-Git-Tag: 24jan2021_ls180~2365 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=021a5ae8a0086db37f9dead282bc04ef79909d5f;p=litex.git liteeth: pep8 (W292) --- diff --git a/misoclib/com/liteeth/test/etherbone_tb.py b/misoclib/com/liteeth/test/etherbone_tb.py index 1a65c8e0..cfb07dfb 100644 --- a/misoclib/com/liteeth/test/etherbone_tb.py +++ b/misoclib/com/liteeth/test/etherbone_tb.py @@ -114,4 +114,4 @@ class TB(Module): print("shift " + str(s) + " / length " + str(l) + " / errors " + str(e)) if __name__ == "__main__": - run_simulation(TB(), ncycles=4096, vcd_name="my.vcd", keep_files=True) \ No newline at end of file + run_simulation(TB(), ncycles=4096, vcd_name="my.vcd", keep_files=True) diff --git a/misoclib/com/liteeth/test/model/arp.py b/misoclib/com/liteeth/test/model/arp.py index 97e21524..22d61a1d 100644 --- a/misoclib/com/liteeth/test/model/arp.py +++ b/misoclib/com/liteeth/test/model/arp.py @@ -152,4 +152,4 @@ if __name__ == "__main__": #print(packet) errors += verify_packet(packet, arp_reply_infos) - print("arp errors " + str(errors)) \ No newline at end of file + print("arp errors " + str(errors)) diff --git a/misoclib/com/liteeth/test/model/icmp.py b/misoclib/com/liteeth/test/model/icmp.py index e8125fd3..f5583628 100644 --- a/misoclib/com/liteeth/test/model/icmp.py +++ b/misoclib/com/liteeth/test/model/icmp.py @@ -102,4 +102,4 @@ if __name__ == "__main__": #print(packet) errors += verify_packet(packet, ping_request_infos) - print("icmp errors " + str(errors)) \ No newline at end of file + print("icmp errors " + str(errors)) diff --git a/misoclib/com/liteeth/test/model/ip.py b/misoclib/com/liteeth/test/model/ip.py index dec63391..825b4c08 100644 --- a/misoclib/com/liteeth/test/model/ip.py +++ b/misoclib/com/liteeth/test/model/ip.py @@ -150,4 +150,4 @@ if __name__ == "__main__": #print(packet) errors += verify_packet(packet, {}) - print("ip errors " + str(errors)) \ No newline at end of file + print("ip errors " + str(errors)) diff --git a/misoclib/com/liteeth/test/model/udp.py b/misoclib/com/liteeth/test/model/udp.py index 58456eac..7a82668f 100644 --- a/misoclib/com/liteeth/test/model/udp.py +++ b/misoclib/com/liteeth/test/model/udp.py @@ -117,4 +117,4 @@ if __name__ == "__main__": errors += 1 errors += verify_packet(packet, udp_infos) - print("udp errors " + str(errors)) \ No newline at end of file + print("udp errors " + str(errors)) diff --git a/misoclib/com/liteeth/test/udp_tb.py b/misoclib/com/liteeth/test/udp_tb.py index 7130eb10..c7e04c8f 100644 --- a/misoclib/com/liteeth/test/udp_tb.py +++ b/misoclib/com/liteeth/test/udp_tb.py @@ -68,4 +68,4 @@ class TB(Module): if __name__ == "__main__": run_simulation(TB(8), ncycles=2048, vcd_name="my.vcd", keep_files=True) run_simulation(TB(16), ncycles=2048, vcd_name="my.vcd", keep_files=True) - run_simulation(TB(32), ncycles=2048, vcd_name="my.vcd", keep_files=True) \ No newline at end of file + run_simulation(TB(32), ncycles=2048, vcd_name="my.vcd", keep_files=True)