Cleanup: declare __all__ for many scripts in tools/
This commit is contained in:
@@ -5,6 +5,15 @@
|
||||
|
||||
# Simple module for inspecting GITEA users, pulls and issues.
|
||||
|
||||
__all__ = (
|
||||
"git_username_detect",
|
||||
"gitea_json_activities_get",
|
||||
"gitea_json_issue_events_filter",
|
||||
"gitea_json_issue_get",
|
||||
"gitea_json_issues_search",
|
||||
"gitea_user_get",
|
||||
)
|
||||
|
||||
import datetime
|
||||
import json
|
||||
import urllib.error
|
||||
|
||||
@@ -10,6 +10,9 @@ Example usage:
|
||||
|
||||
python ./issues_module_listing.py --severity High
|
||||
"""
|
||||
__all__ = (
|
||||
"main",
|
||||
)
|
||||
|
||||
import argparse
|
||||
import dataclasses
|
||||
|
||||
@@ -12,6 +12,9 @@ Example usage:
|
||||
|
||||
python ./issues_needing_info.py --username mano-wii
|
||||
"""
|
||||
__all__ = (
|
||||
"main",
|
||||
)
|
||||
|
||||
import argparse
|
||||
import datetime
|
||||
|
||||
@@ -15,6 +15,10 @@ Example usage:
|
||||
|
||||
python ./weekly_report.py --username mano-wii
|
||||
"""
|
||||
__all__ = (
|
||||
"main",
|
||||
)
|
||||
|
||||
|
||||
import argparse
|
||||
import datetime
|
||||
|
||||
Reference in New Issue
Block a user