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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/tox-dev/pyproject-fmt
rev: v2.11.1
rev: v2.12.1
hooks:
- id: pyproject-fmt
- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.24.1
rev: v0.25
hooks:
- id: validate-pyproject
- repo: https://github.com/sphinx-contrib/sphinx-lint
Expand All @@ -44,7 +44,7 @@ repos:
entry: isort --profile=black
name: isort (python)
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.12.0
rev: 26.1.0
hooks:
- id: black
- repo: https://github.com/tonybaloney/perflint
Expand Down
2 changes: 0 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import os
import re


# Set canonical URL for the sitemap
html_baseurl = "https://python4data.science/de/latest/"

Expand All @@ -33,7 +32,6 @@
import os
import re


project = "Python für Data Science"
author = "Veit Schiele"
copyright = f"2019–2025, {author}"
Expand Down
2 changes: 1 addition & 1 deletion docs/data-processing/apis/grpc/accounts_pb2.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: accounts.proto
"""Generated protocol buffer code."""

from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from google.protobuf import reflection as _reflection
from google.protobuf import symbol_database as _symbol_database


# @@protoc_insertion_point(imports)

_sym_db = _symbol_database.Default()
Expand Down
1 change: 1 addition & 0 deletions docs/data-processing/apis/grpc/accounts_pb2_grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
"""Client and server classes corresponding to protobuf-defined services."""

import accounts_pb2 as accounts__pb2
import grpc

Expand Down
1 change: 0 additions & 1 deletion docs/productive/git/advanced/exceltocsv.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

import pandas as pd


for sheet_name in pd.ExcelFile(sys.argv[1]).sheet_names:
output = StringIO()
print("Sheet: %s" % sheet_name)
Expand Down
1 change: 0 additions & 1 deletion fastapi/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

from fastapi import FastAPI


app = FastAPI()


Expand Down
Loading