From 58c2974964d372ee842cba50f6116140d420e5a0 Mon Sep 17 00:00:00 2001 From: Tam Nguyen Date: Sat, 17 Jan 2026 11:50:00 +1100 Subject: [PATCH] style: fix trailing new lines + spaces --- .github/workflows/ci.yml | 1 - README.md | 2 +- check.sh | 1 - check_manually.sh | 2 +- ensure_sorted.py | 5 ++--- 5 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5cb3b7df..0035be89 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,4 +39,3 @@ jobs: uses: actions/checkout@main - name: Ensure sorted run: python3 ensure_sorted.py - diff --git a/README.md b/README.md index 93901f85..e6f982d6 100644 --- a/README.md +++ b/README.md @@ -433,7 +433,7 @@ A list of **Free** and **Open Source Software** ***(FOSS)*** for **Android** – * [**8VIM**](https://github.com/flide/8VIM) **[[F-Droid](https://f-droid.org/packages/inc.flide.vi8)]** **[[IzzyOnDroid](https://apt.izzysoft.de/packages/inc.flide.vi8)]** * [**AnySoftKeyboard**](https://anysoftkeyboard.github.io/) **[[F-Droid](https://f-droid.org/packages/com.menny.android.anysoftkeyboard)]** * [**fcitx5-android**](https://github.com/fcitx5-android/fcitx5-android) **[[F-Droid](https://f-droid.org/packages/org.fcitx.fcitx5.android)]** -* [**FlorisBoard**](https://github.com/florisboard/florisboard) **[[F-Droid](https://f-droid.org/packages/dev.patrickgold.florisboard)]** **[[IzzyOnDroid](https://apt.izzysoft.de/packages/dev.patrickgold.florisboard)]** +* [**FlorisBoard**](https://github.com/florisboard/florisboard) **[[F-Droid](https://f-droid.org/packages/dev.patrickgold.florisboard)]** **[[IzzyOnDroid](https://apt.izzysoft.de/packages/dev.patrickgold.florisboard)]** FlorisBoard Beta: **[[IzzyOnDroid](https://apt.izzysoft.de/packages/dev.patrickgold.florisboard.beta)]** * [**Fossify Keyboard**](https://github.com/FossifyOrg/Keyboard) **[[F-Droid](https://f-droid.org/packages/org.fossify.keyboard)]** **[[IzzyOnDroid](https://apt.izzysoft.de/packages/org.fossify.keyboard)]** * [**FutharkBoard**](https://github.com/DrMaxNix/futharkboard) **[[F-Droid](https://f-droid.org/packages/de.drmaxnix.futharkboard)]** diff --git a/check.sh b/check.sh index 842b06bb..ffa9d1a3 100755 --- a/check.sh +++ b/check.sh @@ -10,7 +10,6 @@ FDROID_SETTINGS=$( \ | sed "s/)].*/;/g" \ ) - FAILED=0 while IFS=';' read -ra TOK; do diff --git a/check_manually.sh b/check_manually.sh index b501ce1e..15e90fe0 100755 --- a/check_manually.sh +++ b/check_manually.sh @@ -76,4 +76,4 @@ function check_links() { fi } -check_links \ No newline at end of file +check_links diff --git a/ensure_sorted.py b/ensure_sorted.py index 0137d257..4109085f 100755 --- a/ensure_sorted.py +++ b/ensure_sorted.py @@ -35,7 +35,7 @@ def where_unsorted(self): for i in range(1, len(self.apps)): if self.apps[i] < self.apps[i-1]: return f'App {bcolors.RED}{self.apps[i-1]}{bcolors.ENDC} is not in the correct order' - + def how_to_sort(self): sorted_apps = sorted(self.apps) unsorted_apps = self.apps.copy() @@ -49,7 +49,7 @@ def how_to_sort(self): def __str__(self): return str(self.apps) - + def __repr__(self): return self.__str__() @@ -98,7 +98,6 @@ def main(): if not all_sorted: exit(2) - if __name__ == "__main__": main()