Skip to content

Commit 133965b

Browse files
committed
Resolve conflicts.
1 parent 0058a8f commit 133965b

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

doc/source/visualdialog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ BaseTextBox
1717

1818
The following methods are public:
1919

20-
.. autoattribute:: position
20+
.. py:property:: position
2121
22-
.. autoattribute:: dimensions
22+
.. py:property:: dimensions
2323
2424
.. automethod:: framing_box
2525

visualdialog/box.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ class BaseTextBox:
8484
Waiting time in milliseconds after writing a character contained
8585
in ``downtime_chars``.
8686
This defaults to ``600``.
87+
88+
:ivar var2: initial value: par2
8789
"""
8890
@value_checker
8991
def __init__(
@@ -136,12 +138,8 @@ def __init__(
136138

137139
@property
138140
def position(self) -> Tuple[int, int]:
139-
<<<<<<< HEAD
140-
"""Return a tuple contains x;y position of :class:`BaseTextBox`.
141-
=======
142141
"""A property that returns a tuple contains x;y position of
143142
:class:`BaseTextBox`.
144-
>>>>>>> 817377f (DialogBox.char_by_char and word_by_word nows return given text argument, start to improve doc.)
145143
146144
The position represents the x;y coordinates of the top left
147145
corner of text box.
@@ -152,12 +150,8 @@ def position(self) -> Tuple[int, int]:
152150

153151
@property
154152
def dimensions(self) -> Tuple[int, int]:
155-
<<<<<<< HEAD
156-
"""Return a tuple contains dimensions of :class:`BaseTextBox`.
157-
=======
158153
"""A property that return a tuple contains dimensions of
159154
:class:`BaseTextBox`.
160-
>>>>>>> 817377f (DialogBox.char_by_char and word_by_word nows return given text argument, start to improve doc.)
161155
162156
:returns: Height and width of :class:`BaseTextBox`.
163157
"""

0 commit comments

Comments
 (0)