Skip to content
Snippets Groups Projects
Commit 7ccd3691 authored by Thomas Holene Løkkeborg's avatar Thomas Holene Løkkeborg
Browse files

#98 docstring fiks

parent 6669ae09
No related branches found
No related tags found
1 merge request!73#98 Kodefrasemodul
Pipeline #83715 passed
...@@ -173,7 +173,7 @@ def event_is_ctrl_minus(event): ...@@ -173,7 +173,7 @@ def event_is_ctrl_minus(event):
Returns Returns
------- -------
bool bool
True if is event is 'CTRL -' True if event is 'CTRL -'.
""" """
# Underline is in practice minus in this situation. We don't know why # Underline is in practice minus in this situation. We don't know why
return ( return (
...@@ -193,7 +193,7 @@ def event_is_shift_plus(event): ...@@ -193,7 +193,7 @@ def event_is_shift_plus(event):
Returns Returns
------- -------
bool bool
True if is event is 'SHIFT +' True if event is 'SHIFT +'.
""" """
return event.key() == Qt.Key_Question return event.key() == Qt.Key_Question
...@@ -209,7 +209,7 @@ def event_is_shift_minus(event): ...@@ -209,7 +209,7 @@ def event_is_shift_minus(event):
Returns Returns
------- -------
bool bool
True if is event is 'SHIFT -' True if event is 'SHIFT -'.
""" """
# Underline is in practice minus in this situation. We don't know why # Underline is in practice minus in this situation. We don't know why
return ( return (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment