Skip to content

Commit

Permalink
Fixed a schmol prollem
Browse files Browse the repository at this point in the history
  • Loading branch information
bytewired9 authored Jun 26, 2024
1 parent 862ea36 commit 1ef4e1d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions oszsave.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import httpx
import shutil
import unicodedata
import curses
from datetime import datetime
from urllib.parse import unquote, urljoin
from selenium import webdriver
Expand All @@ -15,7 +14,13 @@
from selenium.common.exceptions import TimeoutException
from colorama import init
import signal

try:
import curses
except ImportError:
if os.name == 'nt':
import windows_curses as curses
else:
raise
# Initialize colorama
init(autoreset=True)

Expand Down

0 comments on commit 1ef4e1d

Please sign in to comment.