Skip to content
Snippets Groups Projects

Fix deprecation warning: `collections.abc` instead of `abc`

2 files
+ 2
2
Compare changes
  • Side-by-side
  • Inline

Files

import numpy as np
from abc import ABC, abstractmethod
from collections.abc import ABC, abstractmethod
from typing import Optional, Callable, Sequence, Iterable, Tuple, Dict, Union
from pystencils.field import Field
Loading