Skip to content

Commit adf8e94

Browse files
consistent naming (#146)
* naming corrected in README and Application title * naming corrected in logger. Closes #144 * Update src/petab_gui/controllers/logger_controller.py Co-authored-by: Daniel Weindl <dweindl@users.noreply.github.com> --------- Co-authored-by: Daniel Weindl <dweindl@users.noreply.github.com>
1 parent a45cc86 commit adf8e94

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ To install the latest development version from GitHub, run:
4040

4141
## Usage
4242

43-
After installation, launch the PEtab GUI from the command line using the
43+
After installation, launch PEtabGUI from the command line using the
4444
`petab_gui` command.
4545

4646
Optionally, you can provide the path to an existing PEtab YAML file

src/petab_gui/controllers/logger_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def __init__(self, views):
1616
"""
1717
self.views = views
1818
self.logger_level = 1
19-
self.log_message("Welcome to PEtab-GUI!", color="green")
19+
self.log_message("Welcome to PEtabGUI!", color="green")
2020
self.log_message(
2121
'If you need help, click <b>Help</b> in the menu,'
2222
' enter the Help Mode (click question mark in toolbar) or visit '

src/petab_gui/views/main_view.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def __init__(self):
3939

4040
self.allow_close = False
4141

42-
self.setWindowTitle("PEtab Editor")
42+
self.setWindowTitle("PEtabGUI")
4343
self.setGeometry(100, 100, 1200, 800)
4444

4545
# Logger: used in both tabs

0 commit comments

Comments
 (0)