Skip to content

Commit 7d49da7

Browse files
committed
Update files to keep the same as OuroWeb TFS
1 parent 7b7f058 commit 7d49da7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+5123
-2139
lines changed

.vscode/extensions.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"ms-python.vscode-pylance",
1212
"ms-python.python",
1313
"njpwerner.autodocstring",
14-
"ms-vscode.vs-keybindings",
15-
"argutec.argutec-azure-repos"
14+
"ms-vscode.vs-keybindings"
1615
]
1716
}

.vscode/launch.json

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
{
22
"version": "1.0",
33
"configurations": [
4-
{
5-
"type": "python",
6-
"request": "launch",
7-
"name": "Launch Program",
8-
"program": "${workspaceFolder}\\pdfconverter.py"
9-
}
4+
{
5+
"type": "python",
6+
"request": "launch",
7+
"name": "Módulo Principal",
8+
"program": "${workspaceFolder}\\pdfconverter.py"
9+
},
10+
{
11+
"type": "python",
12+
"request": "launch",
13+
"name": "Rodar Setup",
14+
"program": "${workspaceFolder}\\setup.py"
15+
}
1016
]
11-
}
17+
}

build/lib/pdfconverter/__init__.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
"""
2+
---
3+
---
4+
---
5+
6+
## Package: pdfconverter
7+
---
8+
---
9+
### Module Name: pdfconverter (Constructor, __init__)
10+
---
11+
### path: "pdfconverter\\\\\\\\__init__.py"
12+
---
13+
---
14+
Pacote e módulo que representa o projeto PDFConverter.
15+
16+
---
17+
---
18+
---
19+
"""

build/lib/pdfconverter/__main__.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
"""
2+
---
3+
---
4+
---
5+
6+
## Package: pdfconverter
7+
---
8+
---
9+
### Module Name: __main__
10+
---
11+
### path: "pdfconverter\\\\\\\\__main__.py"
12+
---
13+
---
14+
Módulo delimitado como escopo do projeto, atualmente, é o
15+
módulo inicializado por padrão dentro do Workspace do Visual
16+
Code, quando pressionada a tecla 'F5', por exemplo.
17+
18+
---
19+
---
20+
---
21+
"""

0 commit comments

Comments
 (0)