Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split APIHelper out into its own file #137

Merged
merged 3 commits into from
Nov 29, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Apply suggestions from code review
Co-authored-by: J0J0 Todos <2733783+JOJ0@users.noreply.github.com>
n-peugnet and JOJ0 authored Nov 29, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit d193708d68085e1c95cde951ffd6725dd46895d5
2 changes: 1 addition & 1 deletion synadm/cli/__init__.py
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

""" CLI base functions and settings
""" CLI root-level commands; Subcommands are imported at the bottom of file
"""

import sys
3 changes: 1 addition & 2 deletions synadm/cli/_helper.py
Original file line number Diff line number Diff line change
@@ -15,8 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

""" API helper, exported in its own file to allow importing it only
when needed."""
""" CLI helpers and utilities"""

import os
import logging