Compare commits

...

4 Commits

Author SHA1 Message Date
Christian Clauss
df129c7ba3
Let's implicitly fix a typo (#681) 2022-07-11 14:03:07 -07:00
Christian Clauss
35886c970c
Upgrade GitHub Actions again (#679) 2022-07-11 14:02:31 -07:00
Karl Kroening
ef00863269
Fix Black in GHA for Python 2.7 (#680)
(At least until Python 2.7 support is finally eliminated)
2022-07-11 13:51:06 -07:00
Christian Clauss
ed70f2e619
Upgrade GitHub Actions (#643) 2022-07-11 13:39:36 -07:00
2 changed files with 9 additions and 8 deletions

View File

@ -17,9 +17,9 @@ jobs:
- "3.9" - "3.9"
- "3.10" - "3.10"
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2 uses: actions/setup-python@v4
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install ffmpeg - name: Install ffmpeg
@ -37,8 +37,9 @@ jobs:
black: black:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- uses: psf/black@21.12b0 # TODO: upgrade after dropping Python 2 support. - name: Black
with: run: |
src: ffmpeg # TODO: also format `examples`. # TODO: use standard `psf/black` action after dropping Python 2 support.
version: 21.12b0 pip install black==21.12b0 click==8.0.2 # https://stackoverflow.com/questions/71673404
black ffmpeg --check --color --diff

View File

@ -74,7 +74,7 @@ class DagNode(object):
"""Provides information about all incoming edges that connect to this node. """Provides information about all incoming edges that connect to this node.
The edge map is a dictionary that maps an ``incoming_label`` to The edge map is a dictionary that maps an ``incoming_label`` to
``(outgoing_node, outgoing_label)``. Note that implicity, ``incoming_node`` is ``(outgoing_node, outgoing_label)``. Note that implicitly, ``incoming_node`` is
``self``. See "Edges" section above. ``self``. See "Edges" section above.
""" """
raise NotImplementedError() raise NotImplementedError()