soc/integration/doc: replace "== None" by "is None"
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Tue, 24 Sep 2019 08:11:31 +0000 (10:11 +0200)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Tue, 24 Sep 2019 08:11:31 +0000 (10:11 +0200)
litex/soc/integration/doc.py

index 6477cc1bcbc357a156bba2102f005fc7ae98354e..6b360dc5aab954fed3dacb5121a099bcd14254a8 100644 (file)
@@ -64,7 +64,7 @@ class ModuleDoc(DUID):
         self._title = title\r
         self._format = format\r
 \r
-        if file == None and body == None and self.__doc__ is None:\r
+        if file is None and body is None and self.__doc__ is None:\r
             raise ValueError("Must specify `file` or `body` when constructing a ModuleDoc()")\r
         if file is not None:\r
             if not os.path.isabs(file):\r