Skip to content

Commit

Permalink
Merge pull request bitdust-io#88 from vesellov/master
Browse files Browse the repository at this point in the history
disabled _Debug statements
  • Loading branch information
vesellov authored Jun 16, 2024
2 parents 2609105 + 0a11d16 commit 4d473cd
Show file tree
Hide file tree
Showing 14 changed files with 18 additions and 13 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9

- name: clean venv
run: make clean venv

Expand Down
2 changes: 1 addition & 1 deletion src/components/file_browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

#------------------------------------------------------------------------------

_Debug = True
_Debug = False

#------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/components/main_win.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

#------------------------------------------------------------------------------

_Debug = True
_Debug = False

#------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/lib/android_permissions.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#------------------------------------------------------------------------------

_Debug = True
_Debug = False

#------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/lib/filechooser_android.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#------------------------------------------------------------------------------

_Debug = True
_Debug = False

#------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/lib/permissions.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#------------------------------------------------------------------------------

_Debug = True
_Debug = False

#------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/lib/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

#------------------------------------------------------------------------------

_Debug = True
_Debug = False

#------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

#------------------------------------------------------------------------------

_Debug = True
_Debug = False
_DebugProfilingEnabled = False
_DebugKivyOutputEnabled = True

Expand Down
2 changes: 1 addition & 1 deletion src/screens/screen_conversations.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

#------------------------------------------------------------------------------

_Debug = True
_Debug = False

#------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/screens/screen_friends.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

#------------------------------------------------------------------------------

_Debug = True
_Debug = False

#------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/screens/screen_search_people.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#------------------------------------------------------------------------------

_Debug = True
_Debug = False

#------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/screens/screen_select_friend.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#------------------------------------------------------------------------------

_Debug = True
_Debug = False

#------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/screens/screen_shared_location.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#------------------------------------------------------------------------------

_Debug = True
_Debug = False

#------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/screens/screen_shares.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

#------------------------------------------------------------------------------

_Debug = True
_Debug = False

#------------------------------------------------------------------------------

Expand Down

0 comments on commit 4d473cd

Please sign in to comment.