Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Mar 6, 2024
1 parent 8abfdb3 commit 4244fbe
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/packse/cli.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import argparse
import json
import logging
import sys
import json
from pathlib import Path
from subprocess import CalledProcessError

Expand All @@ -15,7 +15,7 @@
UserError,
)
from packse.fetch import fetch
from packse.index import index_down, index_up, build_index
from packse.index import build_index, index_down, index_up
from packse.inspect import inspect
from packse.list import list
from packse.publish import publish
Expand Down
6 changes: 3 additions & 3 deletions src/packse/index.py
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
import errno
import hashlib
import importlib
import logging
import os
import shutil
import signal
import subprocess
import hashlib
import sys
import tempfile
import time
from contextlib import contextmanager, nullcontext
from pathlib import Path
from typing import Generator
import tempfile

from packse import __development_base_path__
from packse.build import build
from packse.error import (
RequiresExtra,
ServeAddressInUse,
ServeAlreadyRunning,
ServeCommandError,
)
from packse.build import build
from packse.inspect import inspect
from packse.template import create_from_template

Expand Down
1 change: 0 additions & 1 deletion src/packse/inspect.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""
Get details for all scenarios.
"""
import json
import logging
from pathlib import Path
from typing import cast
Expand Down
2 changes: 1 addition & 1 deletion src/packse/template.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import logging
import re
from pathlib import Path
from typing import Any

import chevron_blue
import msgspec
import re

from packse.templates import __templates_path__

Expand Down

0 comments on commit 4244fbe

Please sign in to comment.