Skip to content

Commit 6f900ff

Browse files
authored
Merge pull request #101 from TechCrafterGaming/FIX-002
2 parents 9ad81c4 + d02f068 commit 6f900ff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,4 +276,4 @@ As of right now, no. However, I _did_ have a CLI version in the recent past befo
276276

277277
**Yes!!** I recommend taking a look at the [Priority Features](#priority-features), [Future Features](#future-features), and [Features I Won't Pull](#features-i-likely-wont-addpull) lists, as well as the project issues to see what’s currently being worked on. Please do not submit pull requests with new feature additions without opening up an issue with a feature request first.
278278

279-
As of writing I don’t have a concrete style guide, just try to stay within or close enough to the PEP 8 style guide and/or match the style of the existing code.
279+
As of writing I don’t have a concrete style guide, just try to stay within or close enough to the [PEP 8](https://peps.python.org/pep-0008/) style guide and/or match the style of the existing code.

tagstudio/src/qt/ts_qt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ def start(self):
398398

399399

400400
def callback_library_needed_check(self,func):
401-
#Check if loaded library has valid path before executing the button function
401+
"""Check if loaded library has valid path before executing the button function"""
402402
if self.lib.library_dir:
403403
func()
404404

@@ -407,7 +407,7 @@ def handleSIGTERM(self):
407407
self.shutdown()
408408

409409
def shutdown(self):
410-
# Save Library on Application Exit
410+
"""Save Library on Application Exit"""
411411
if self.lib.library_dir:
412412
self.save_library()
413413
self.settings.setValue("last_library", self.lib.library_dir)

0 commit comments

Comments
 (0)