Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

[pre-commit.ci] pre-commit autoupdate #13

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ default_language_version:

repos:
- repo: https://github.com/psf/black
rev: 22.12.0
rev: 24.3.0
hooks:
- id: black
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
rev: 7.0.0
hooks:
- id: flake8
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Create Date: 2023-04-21 08:47:13.216912

"""

from alembic import op
import sqlalchemy as sa

Expand Down
1 change: 0 additions & 1 deletion network_manager/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@


class DB:

"""
Contains functions for performing database operations
"""
Expand Down
2 changes: 0 additions & 2 deletions network_manager/node_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@


class NodeRegistry:

"""
Contains functions for retrieving information from the github node registry
"""
Expand All @@ -26,7 +25,6 @@ def get_node_registry():

@staticmethod
def get_node_info():

"""
Gets information from the node info repository at the given url.
Returns the information in json format
Expand Down
1 change: 0 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ def get_session_factory(engine):


def get_tm_session(session_factory, transaction_manager, request=None):

"""

Get a ``sqlalchemy.orm.Session`` instance backed by a transaction.
Expand Down