Skip to content
Open
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
@@ -1,15 +1,15 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.6.2
rev: v0.16.0
hooks:
# Run the linter.
- id: ruff
args: [ --fix ]
# Run the formatter.
- id: ruff-format
- repo: https://github.com/pycqa/pylint
rev: v3.2.6
rev: v4.0.6
hooks:
- id: pylint
additional_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion pypoint/auth.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Abstract class to make authenticated requests."""

from abc import ABC, abstractmethod
import logging
from abc import ABC, abstractmethod

from aiohttp import ClientResponse, ClientSession
from aiohttp.client_exceptions import ClientConnectionError
Expand Down
Loading