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 .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ repos:
name: isort (pyi)
types: [pyi]
- repo: https://github.com/pycqa/flake8
rev: 7.1.2
rev: 7.2.0
hooks:
- id: flake8
args: ["--config=.flake8"]
Expand All @@ -79,7 +79,7 @@ repos:
- id: clang-format
args: ["-i"]
- repo: https://github.com/gitleaks/gitleaks
rev: v8.24.0
rev: v8.25.1
hooks:
- id: gitleaks
- repo: https://github.com/jumanjihouse/pre-commit-hooks
Expand Down
2 changes: 1 addition & 1 deletion dpnp/random/dpnp_iface_random.py
Original file line number Diff line number Diff line change
Expand Up @@ -1672,7 +1672,7 @@ def seed(seed=None, device=None, sycl_queue=None):
"""

# update a mt19937 random number for both RandomState and legacy functionality
global _dpnp_random_states
global _dpnp_random_states # noqa: F824

sycl_queue = dpnp.get_normalized_queue_device(
device=device, sycl_queue=sycl_queue
Expand Down
Loading