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 3b336a4
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__(

Check failure on line 9 in src/ert/gui/tools/design_matrix/design_matrix_panel.py

View workflow job for this annotation

GitHub Actions / type-checking (3.12)

Function is missing a type annotation for one or more arguments
self, design_matrix_df: pd.DataFrame, parent=Optional[QWidget]
) -> None:
super().__init__(parent)

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

0 comments on commit 3b336a4

Please sign in to comment.