src/eric7/PdfViewer/PdfGoToDialog.py

branch
pdf_viewer
changeset 9722
63135ab601e7
parent 9699
92dcd34d54e4
child 10439
21c28b0f9e41
--- a/src/eric7/PdfViewer/PdfGoToDialog.py	Fri Jan 20 17:31:29 2023 +0100
+++ b/src/eric7/PdfViewer/PdfGoToDialog.py	Mon Jan 23 17:12:03 2023 +0100
@@ -4,16 +4,24 @@
 #
 
 """
-
+Module implementing a dialog to enter a PDF page number to jump to.
 """
 
 from PyQt6.QtCore import Qt
 from PyQt6.QtWidgets import (
-    QDialog, QDialogButtonBox, QSlider, QSpinBox, QHBoxLayout, QVBoxLayout
+    QDialog,
+    QDialogButtonBox,
+    QHBoxLayout,
+    QSlider,
+    QSpinBox,
+    QVBoxLayout,
 )
 
+
 class PdfGoToDialog(QDialog):
-    
+    """
+    Class implementing a dialog to enter a PDF page number to jump to.
+    """
 
     def __init__(self, curPage, pageCount, parent=None):
         """

eric ide

mercurial