Skip to content

Commit 61b9601

Browse files
committed
Cleanups. Trigger on master.
1 parent 7bd1615 commit 61b9601

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: CI
55

66
on:
77
push:
8-
branches: ["main"]
8+
branches: ["main", "master"]
99
pull_request:
10-
branches: ["main"]
10+
branches: ["main", "master"]
1111

1212
permissions:
1313
contents: read

.style.yapf

Lines changed: 0 additions & 2 deletions
This file was deleted.

repren/repren.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,12 +249,12 @@
249249

250250
import argparse
251251
import bisect
252+
import importlib.metadata
252253
import os
253254
import re
254255
import shutil
255256
import sys
256257
from typing import BinaryIO, Callable, List, Match, Optional, Pattern, Tuple, TypeAlias
257-
import importlib.metadata
258258

259259
# Type aliases for clarity.
260260
PatternType: TypeAlias = Tuple[Pattern[bytes], bytes]

tests/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# We don't want to check in the run directory or the full, un-cleaned logs.
22
tmp-dir
33
tests-full.log
4+
test.diff

0 commit comments

Comments
 (0)