Skip to content
This repository was archived by the owner on Jan 2, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .vscode/settings.json

This file was deleted.

Binary file added __pycache__/mac.cpython-38.pyc
Binary file not shown.
Binary file added __pycache__/main.cpython-38.pyc
Binary file not shown.
Binary file added __pycache__/some.cpython-38.pyc
Binary file not shown.
Binary file added __pycache__/text.cpython-38.pyc
Binary file not shown.
Binary file added __pycache__/win.cpython-38.pyc
Binary file not shown.
8 changes: 4 additions & 4 deletions win.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def create(mypath, cur_path):
stylepath = os.path.join(mypath, "style")
os.mkdir(stylepath)
os.chdir(stylepath)
f2 = open("style.css", "w+")
f2 = open("style.scss", "w+")
css = """*{
margin:0;
padding: 0;
Expand Down Expand Up @@ -81,10 +81,10 @@ def opion(optin):
ch(mypath)
except OSError as Error:
print(Error)
print(f"the project mention {cdir} doesnt exist")
print(f"the project mention {cdir} doesn't exist")
t.main(optin)
elif optin == 2:
cdir = input("Mention the project name (to say i dont recommend this option)")
cdir = input("Mention the project name (to say i don'7t recommend this option)")
def_path = "c:/users/hp/documents/github/html"
try:
mypath = def_path
Expand All @@ -93,7 +93,7 @@ def opion(optin):
os.system(f"rd {cdir} /s")
except OSError as Error:
print(Error)
print(f"the project mention {cdir} doesnt exist")
print(f"the project mention {cdir} doesn't exist")
t.main(optin)
elif optin == 4:
cdir = input("Mention the project name to archive")
Expand Down