Skip to content

Commit 58eadb0

Browse files
committed
CI: add black check
1 parent 0419959 commit 58eadb0

25 files changed

+993
-725
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
- name: Install Poetry
2626
uses: Gr1N/setup-poetry@v4
2727

28-
# - name: Code Quality
29-
# run: poetry run black . --check
28+
- name: Code Quality
29+
run: poetry run black . --check
3030

3131
- name: Install dependencies
3232
run: poetry install

dolang/__init__.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,11 @@
22
from dolang.yaml_tools import yaml
33

44
from dolang.grammar import parse_string
5-
from dolang.grammar import stringify, list_variables, list_symbols, time_shift, steady_state
6-
from dolang.grammar import str_expression
5+
from dolang.grammar import (
6+
stringify,
7+
list_variables,
8+
list_symbols,
9+
time_shift,
10+
steady_state,
11+
)
12+
from dolang.grammar import str_expression

0 commit comments

Comments
 (0)