Skip to content

Commit 89430a8

Browse files
committed
Fix typo, remove license of top of file.
1 parent be8241f commit 89430a8

File tree

12 files changed

+26
-92
lines changed

12 files changed

+26
-92
lines changed

examples/confrontation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# confrontation.py
1+
# confrontation.py
22
#
3-
A concrete example exploiting the possibilities of Visual-dialog.
3+
# A concrete example exploiting the possibilities of Visual-dialog.
44

55
import curses
66

examples/context.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# context.py
1+
# context.py
22
#
3-
# An example of how to use a text box as a context manager.
3+
# An example of how to use a text box as a context manager.
44

55
import curses
66

examples/monologue.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# monologue.py
1+
# monologue.py
22
#
3-
A simple example of how to use Visual-dialog.
3+
# A simple example of how to use Visual-dialog.
44

55
import curses
66

examples/text_attributes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# text_attributes.py
1+
# text_attributes.py
22
#
3-
# An example showing the possibilities of text formatting.
3+
# An example showing the possibilities of text formatting.
44

55
import curses
66

examples/word.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# words.py
1+
# words.py
22
#
3-
An example of using the word_by_word method from text boxes.
3+
# An example of using the word_by_word method from text boxes.
44

55
import curses
66

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
from setuptools import find_packages, setup
23

34
from visualdialog import __author__, __version__

tests/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# test.py
1+
# test.py
22
#
3-
This file contains the tests used to debug the library.
3+
# This file contains the tests used to debug the library.
44

55
import curses
66

visualdialog/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
"""
23
A library to make easier dialog box in terminal.
34
"""

visualdialog/box.py

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,6 @@
1-
# box.py
2-
#
3-
# 2020 Timéo Arnouts <[email protected]>
4-
#
5-
# This program is free software; you can redistribute it and/or modify
6-
# it under the terms of the GNU General Public License as published by
7-
# the Free Software Foundation; either version 2 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# This program is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU General Public License
16-
# along with this program; if not, write to the Free Software
17-
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18-
# MA 02110-1301, USA.
19-
#
1+
# box.py
202
#
3+
# 2020 Timéo Arnouts <[email protected]>
214

225
__all__ = ["BaseTextBox"]
236

visualdialog/choices.py

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,6 @@
1-
# choices.py
2-
#
3-
# 2020 Timéo Arnouts <[email protected]>
4-
#
5-
# This program is free software; you can redistribute it and/or modify
6-
# it under the terms of the GNU General Public License as published by
7-
# the Free Software Foundation; either version 2 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# This program is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU General Public License
16-
# along with this program; if not, write to the Free Software
17-
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18-
# MA 02110-1301, USA.
19-
#
1+
# choices.py
202
#
3+
# 2020 Timéo Arnouts <[email protected]>
214

225
import curses
236
from typing import Any, Dict, Tuple, Union

0 commit comments

Comments
 (0)