Skip to content

Commit d1961a6

Browse files
authoredMar 7, 2023
Teal to PyTeal Source Mapper (#650)
1 parent 42e6981 commit d1961a6

Some content is hidden

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

64 files changed

+9176
-325
lines changed
 

‎.flake8

+6
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,14 @@ per-file-ignores =
2323
examples/signature/recurring_swap.py: F403, F405
2424
examples/signature/split.py: F403, F405
2525
pyteal/__init__.py: F401, F403
26+
pyteal/compiler/flatten.py: F821
2627
pyteal/compiler/optimizer/__init__.py: F401
2728
pyteal/ir/ops.py: E221
29+
pyteal/ir/tealconditionalblock.py: F821
30+
pyteal/ir/tealsimpleblock.py: F821
31+
pyteal/stack_frame.py: F821
32+
tests/teal/rps_helpers/program.py: F401, F403, F405
33+
tests/teal/rps.py: F403, F405, I252
2834
tests/unit/module_test.py: F401, F403
2935

3036
# from flake8-tidy-imports

‎.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Build workflow"
1+
name: "On Commit Workflow"
22
on:
33
pull_request:
44
push:
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-20.04
5050
strategy:
5151
matrix:
52-
python: [ "3.10" ]
52+
python: ["3.10"]
5353
steps:
5454
- name: Check out code
5555
uses: actions/checkout@v2

0 commit comments

Comments
 (0)
Please sign in to comment.