Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
MasloMaslane committed Nov 30, 2024
1 parent 8e92a50 commit fffba1a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/sio3pack/files/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from sio3pack.files.file import File
from sio3pack.files.filetracker_file import FiletrackerFile
from sio3pack.files.local_file import LocalFile
from sio3pack.files.file import File
4 changes: 1 addition & 3 deletions src/sio3pack/packages/sinolpack/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@

from sio3pack import LocalFile
from sio3pack.files import File
from sio3pack.graph import Graph
from sio3pack.graph import GraphManager
from sio3pack.graph import GraphOperation
from sio3pack.graph import Graph, GraphManager, GraphOperation
from sio3pack.packages.package import Package
from sio3pack.packages.sinolpack.enums import ModelSolutionKind
from sio3pack.util import naturalsort_key
Expand Down
2 changes: 1 addition & 1 deletion src/sio3pack/utils/archive.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def __init__(self, file, ext=""):
self._archive = self._archive_cls(self.filename, ext=ext)(self.filename)

def __str__(self):
return f'<Archive({self._archive.__class__.__name__}) {self.filename}>'
return f"<Archive({self._archive.__class__.__name__}) {self.filename}>"

@staticmethod
def _archive_cls(file, ext=""):
Expand Down
2 changes: 1 addition & 1 deletion tests/packages/sinolpack/test_sinolpack.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import sio3pack
from sio3pack.packages import Sinolpack
from tests.fixtures import Compression, all_compressions, get_package, get_archived_package, PackageInfo
from tests.fixtures import Compression, PackageInfo, all_compressions, get_archived_package, get_package


@pytest.mark.parametrize("get_archived_package", [("simple", c) for c in Compression], indirect=True)
Expand Down

0 comments on commit fffba1a

Please sign in to comment.