Skip to content

Commit

Permalink
linter formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
brifordwylie committed Feb 2, 2024
1 parent cda7715 commit 719b370
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/sageworks/repl/sageworks_shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def show_config(self):

def import_sageworks(self):
# Import all the SageWorks modules
spinner = Spinner("lightpurple", "Chatting with AWS")
spinner = Spinner("lightpurple", "Chatting with AWS:")
spinner.start() # Start the spinner
try:
self.artifacts_text_view = importlib.import_module(
Expand Down
3 changes: 1 addition & 2 deletions src/sageworks/utils/repl_utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Repl utilities for Sageworks"""

import random
import threading
import itertools
import time
Expand Down Expand Up @@ -95,7 +94,7 @@ def spin(self):

# Initialize each spinner to a random position in the cycle
for i, spinner in enumerate(spinners):
for _ in range(i*2):
for _ in range(i * 2):
next(spinner)

self._hide_cursor()
Expand Down

0 comments on commit 719b370

Please sign in to comment.