Skip to content

Commit fb71115

Browse files
author
mendelsshop
committed
cargo formatted: Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 371ae16 commit fb71115

File tree

1 file changed

+3
-4
lines changed
  • git-function-history-lib/src/languages

1 file changed

+3
-4
lines changed

git-function-history-lib/src/languages/python.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,8 @@ pub(crate) fn find_function_in_file(
185185
lines: (start, end),
186186
decorators,
187187
});
188-
}
189-
None
190-
188+
}
189+
None
191190
})
192191
.collect::<Vec<PythonClass>>();
193192
let parent = func
@@ -304,7 +303,7 @@ impl FunctionDef {
304303
}
305304
}
306305

307-
const fn args(&self) -> &ast::located::Arguments {
306+
const fn args(&self) -> &ast::located::Arguments {
308307
match self {
309308
Self::Normal(n) => &n.args,
310309
Self::Async(a) => &a.args,

0 commit comments

Comments
 (0)