Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions grudge/models/euler.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
THE SOFTWARE.
"""

from abc import ABCMeta, abstractmethod
from abc import ABC, abstractmethod
from dataclasses import dataclass
from typing import TYPE_CHECKING

Expand Down Expand Up @@ -172,7 +172,7 @@ def compute_wavespeed(actx: ArrayContext, cv_state: ConservedEulerField, gamma=1

# {{{ Boundary condition types

class InviscidBCObject(metaclass=ABCMeta):
class InviscidBCObject(ABC):

def __init__(self, *, prescribed_state=None) -> None:
self.prescribed_state = prescribed_state
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ extend-ignore = [
"tab-after-comma",
"module-import-not-at-top-of-file",
"non-empty-init-module",
"pytest-parameter-with-default-argument",
]

[tool.ruff.lint.flake8-quotes]
Expand Down
Loading