Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
adriangb committed Jun 13, 2023
1 parent e02fb19 commit 5a55c16
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/types/frozenset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ impl<'py> PyFrozenSetBuilder<'py> {
/// Create a new `FrozenSetBuilder`.
/// Since this allocates a `PyFrozenSet` internally it may
/// panic when running out of memory.
pub fn new<'a>(
py: Python<'py>,
) -> PyResult<PyFrozenSetBuilder<'py>> {
pub fn new<'a>(py: Python<'py>) -> PyResult<PyFrozenSetBuilder<'py>> {
Ok(PyFrozenSetBuilder {
py_frozen_set: PyFrozenSet::empty(py)?,
})
Expand Down

0 comments on commit 5a55c16

Please sign in to comment.