Skip to content

Commit

Permalink
adding transcribing log for ux
Browse files Browse the repository at this point in the history
  • Loading branch information
benleem committed Oct 1, 2024
1 parent a10cd27 commit 702faef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/prepare.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package cmd

import (
"fmt"

"github.com/benleem/prattl/pysrc"
"github.com/spf13/cobra"
)
Expand All @@ -12,7 +13,7 @@ func init() {

var prepareCommand = &cobra.Command{
Use: "prepare",
Short: "prepare the python distribution required by prattl",
Short: "Prepare the python distribution required by prattl",
Long: "This command prepares the distribution needed to use prattl",
Args: cobra.ExactArgs(0),
RunE: func(cmd *cobra.Command, args []string) error {
Expand Down
1 change: 1 addition & 0 deletions cmd/transcribe.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ var transcribeCmd = &cobra.Command{
return fmt.Errorf("%s", "no file path provided\n")
}

fmt.Println("transcribing...")
transcriptionMap := make(map[string]string)
transcriptions, err := transcribe(args)
if err != nil {
Expand Down

0 comments on commit 702faef

Please sign in to comment.