Skip to content

Commit

Permalink
Fix ruff issues
Browse files Browse the repository at this point in the history
These issues sneaked into main via a rebase while ruff was upgraded
  • Loading branch information
berland committed Dec 13, 2024
1 parent 9725d7d commit 518edbd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/ert/resources/forward_models/template_render.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
import argparse
import json
import os
from typing import Any, Sequence
from collections.abc import Sequence
from typing import Any

import jinja2
import yaml
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import json
import os
from typing import Sequence
from collections.abc import Sequence

import pandas

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import contextlib
import json
import os
from typing import Any, Sequence
from collections.abc import Sequence
from typing import Any

import numpy
import pandas as pd
Expand Down

0 comments on commit 518edbd

Please sign in to comment.