Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mpiannucci committed Dec 18, 2024
1 parent 09b2cf1 commit 36f2316
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
1 change: 0 additions & 1 deletion icechunk-python/python/icechunk/_icechunk_python.pyi
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import abc
import datetime

from collections.abc import AsyncGenerator, Iterable
from enum import Enum

Expand Down
4 changes: 3 additions & 1 deletion icechunk-python/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ mod storage;
mod store;
mod streams;

use conflicts::{PyBasicConflictSolver, PyConflictDetector, PyConflictSolver, PyVersionSelection};
use conflicts::{
PyBasicConflictSolver, PyConflictDetector, PyConflictSolver, PyVersionSelection,
};
use pyo3::prelude::*;
use repository::{PyRepository, PyRepositoryConfig, PySnapshotMetadata};
use session::PySession;
Expand Down
4 changes: 3 additions & 1 deletion icechunk-python/src/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ use pyo3::{prelude::*, types::PyType};
use tokio::sync::RwLock;

use crate::{
conflicts::PyConflictSolver, errors::{PyIcechunkStoreError, PyIcechunkStoreResult}, store::{PyStore, PyStoreConfig}
conflicts::PyConflictSolver,
errors::{PyIcechunkStoreError, PyIcechunkStoreResult},
store::{PyStore, PyStoreConfig},
};

#[pyclass]
Expand Down
3 changes: 2 additions & 1 deletion icechunk-python/tests/test_timetravel.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
from typing import cast

import icechunk
import pytest

import icechunk
import zarr
import zarr.core
import zarr.core.array
Expand Down

0 comments on commit 36f2316

Please sign in to comment.