File tree Expand file tree Collapse file tree 6 files changed +9
-4
lines changed
Expand file tree Collapse file tree 6 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 11repos :
22 - repo : https://github.com/pre-commit/pre-commit-hooks
3- rev : v4.3 .0
3+ rev : v4.5 .0
44 hooks :
55 - id : check-ast
66 - id : check-toml
77 - id : check-yaml
88 - id : end-of-file-fixer
99 - id : trailing-whitespace
1010 - repo : https://github.com/psf/black
11- rev : 22.8 .0
11+ rev : 24.3 .0
1212 hooks :
1313 - id : black
1414 - repo : https://github.com/codespell-project/codespell
15- rev : v2.2.1
15+ rev : v2.2.6
1616 hooks :
1717 - id : codespell
1818 - repo : https://github.com/PyCQA/flake8
19- rev : 5 .0.4
19+ rev : 7 .0.0
2020 hooks :
2121 - id : flake8
2222 - repo : https://github.com/PyCQA/isort
Original file line number Diff line number Diff line change 11"""Python interface to the Landlock Linux Security Module."""
2+
23from typing import Optional
34
45__version__ = "1.0.0.dev4"
Original file line number Diff line number Diff line change 11"""Landlock constants and syscalls."""
2+
23import ctypes
34import enum
45import errno
Original file line number Diff line number Diff line change 11"""Test initialisation code run by pytest."""
2+
23import platform
34from pathlib import Path
45
Original file line number Diff line number Diff line change 11"""Some simple tests for Landlock."""
2+
23import platform
34from pathlib import Path
45
Original file line number Diff line number Diff line change 11"""Tests Landlock on unsupported platforms (MacOS and Windows)."""
2+
23import platform
34
45import pytest
You can’t perform that action at this time.
0 commit comments