From cc08d50190fb3d2c8ba9694ea04ed328b61b96b0 Mon Sep 17 00:00:00 2001 From: CoffeeStraw Date: Fri, 2 Aug 2024 21:51:13 +0200 Subject: [PATCH] Format files with black --- examples/1 - Basics/1 - Look into ASS values.py | 1 + examples/1 - Basics/2 - Create the First Output.py | 1 + examples/1 - Basics/3 - More lines.py | 1 + examples/1 - Basics/4 - Organizing the code.py | 1 + 4 files changed, 4 insertions(+) diff --git a/examples/1 - Basics/1 - Look into ASS values.py b/examples/1 - Basics/1 - Look into ASS values.py index 007d75b1..5bf06f8d 100644 --- a/examples/1 - Basics/1 - Look into ASS values.py +++ b/examples/1 - Basics/1 - Look into ASS values.py @@ -19,6 +19,7 @@ You can find more info about each object used to represent the input .ass file here: https://pyonfx.readthedocs.io/en/latest/reference/ass%20core.html """ + from pyonfx import * io = Ass("in.ass") diff --git a/examples/1 - Basics/2 - Create the First Output.py b/examples/1 - Basics/2 - Create the First Output.py index 8bfc7db4..1e6eeeda 100644 --- a/examples/1 - Basics/2 - Create the First Output.py +++ b/examples/1 - Basics/2 - Create the First Output.py @@ -25,6 +25,7 @@ - open_aegisub: https://pyonfx.readthedocs.io/en/latest/reference/ass%20core.html#pyonfx.ass_core.Ass.open_aegisub - open_mpv: https://pyonfx.readthedocs.io/en/latest/reference/ass%20core.html#pyonfx.ass_core.Ass.open_mpv """ + from pyonfx import * io = Ass("in.ass") diff --git a/examples/1 - Basics/3 - More lines.py b/examples/1 - Basics/3 - More lines.py index 1923b377..7842102b 100644 --- a/examples/1 - Basics/3 - More lines.py +++ b/examples/1 - Basics/3 - More lines.py @@ -8,6 +8,7 @@ For more info about the copy method: https://pyonfx.readthedocs.io/en/latest/reference/ass%20core.html#pyonfx.ass_core.Line.copy """ + from pyonfx import * io = Ass("in.ass") diff --git a/examples/1 - Basics/4 - Organizing the code.py b/examples/1 - Basics/4 - Organizing the code.py index 3dfb9ad4..651e4616 100644 --- a/examples/1 - Basics/4 - Organizing the code.py +++ b/examples/1 - Basics/4 - Organizing the code.py @@ -20,6 +20,7 @@ Note that this code will not do anything, because there is nothing written in the romaji, kanji, sub functions. We will create our first effect in the next section: 2 - Beginner """ + from pyonfx import * io = Ass("in.ass")