Skip to content

Commit 6c28210

Browse files
committed
🎨 cargo fmt
1 parent 537820e commit 6c28210

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

‎pylib/traopy/src/models/dependency.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use pyo3::prelude::*;
44
use pyo3_stub_gen::derive::*;
55

66
/// Dependency object to refer to previous output.
7-
///
7+
///
88
/// Path to the output will be provided as an environment variable named `envvar_name`.
99
#[gen_stub_pyclass]
1010
#[pyclass]

‎pylib/traopy/src/models/execution.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use pyo3::prelude::*;
44
use pyo3_stub_gen::derive::*;
55

66
/// Execution object to be executed
7-
///
7+
///
88
/// Script will be run with paths as environment variables specified in `depends_on`.
99
#[gen_stub_pyclass]
1010
#[pyclass]

‎pylib/traopy/src/models/output.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use pyo3::prelude::*;
22
use pyo3_stub_gen::derive::*;
33

44
/// Output object of each job.
5-
///
5+
///
66
/// Executions can depend on Output by passing Output object to `depends_on` field of Execution.
77
#[gen_stub_pyclass]
88
#[pyclass]

‎pylib/traopy/src/models/resource_kind.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use pyo3::prelude::*;
44
use pyo3_stub_gen::derive::*;
55

66
/// Resource object to be placed in the execution environment.
7-
///
7+
///
88
/// EmptyDirectory is an directory and TextFile and RuntimeTextFile are files.
99
#[gen_stub_pyclass_enum]
1010
#[pyclass]

‎pylib/traopy/src/models/runtime_text.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use pyo3::prelude::*;
33
use pyo3_stub_gen::derive::*;
44

55
/// RuntimeText object to be placed in the execution environment.
6-
///
6+
///
77
/// `label`s have corresponding types of resources determined in judge-run time.
88
/// | label | description |
99
/// | --- | --- |

‎pylib/traopy/src/models/text.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use pyo3_stub_gen::derive::*;
44
use std::path::PathBuf;
55

66
/// Text object to be placed in the execution environment.
7-
///
7+
///
88
/// Contents of Text must be static.
99
#[gen_stub_pyclass]
1010
#[pyclass]

0 commit comments

Comments
 (0)