Skip to content

Commit 5d10615

Browse files
committed
style: blacken, new version of black
1 parent d29452d commit 5d10615

42 files changed

Lines changed: 42 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

httpstan/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
55
:license: ISC, see LICENSE for more details.
66
"""
7+
78
import importlib.metadata
89
import logging
910

httpstan/__main__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
``python3 -m httpstan`` starts a server listening on ``127.0.0.1``.
44
55
"""
6+
67
import argparse
78

89
import aiohttp.web

httpstan/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
33
Configure the server and schedule startup and shutdown tasks.
44
"""
5+
56
import asyncio
67
import logging
78

httpstan/cache.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
33
Functions in this module manage the Stan model cache and related caches.
44
"""
5+
56
import logging
67
import shutil
78
import typing

httpstan/compile.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Runs the `stanc` binary in a subprocess to compile a Stan program."""
2+
23
import importlib.resources
34
import os
45
import subprocess

httpstan/fits.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Helper functions for Stan fits."""
2+
23
import base64
34
import hashlib
45
import pickle

httpstan/models.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from C++ code generated and loading the resulting module.
55
66
"""
7+
78
import asyncio
89
import base64
910
import hashlib

httpstan/openapi.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
have not installed ``apispec``.
66
77
"""
8+
89
from typing import Optional
910

1011
import apispec

httpstan/routes.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
33
Routes for the HTTP server are defined here.
44
"""
5+
56
import aiohttp.web
67

78
import httpstan.views as views

httpstan/services/arguments.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Lookup arguments and argument default values for stan::services functions."""
2+
23
import enum
34
import functools
45
import importlib.resources

0 commit comments

Comments
 (0)