Skip to content

Commit

Permalink
More typying
Browse files Browse the repository at this point in the history
  • Loading branch information
xjules committed Oct 9, 2024
1 parent 2aae72e commit 7f09561
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/ert/gui/tools/design_matrix/design_matrix_panel.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
from typing import Optional

import pandas as pd
from qtpy.QtGui import QStandardItem, QStandardItemModel
from qtpy.QtWidgets import QDialog, QTableView, QVBoxLayout
from qtpy.QtWidgets import QDialog, QTableView, QVBoxLayout, QWidget


class DesignMatrixPanel(QDialog):
def __init__(self, design_matrix_df: pd.DataFrame, parent=None):
def __init__(
self, design_matrix_df: pd.DataFrame, parent: Optional[QWidget] = None
) -> None:
super().__init__(parent)

self.setWindowTitle("Design matrix parameters viewer")
Expand Down

0 comments on commit 7f09561

Please sign in to comment.