Skip to content

Commit

Permalink
Remove "Targets" lingo from UI to be more clear.
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaak-Malers committed Feb 23, 2024
1 parent 70adc17 commit 7de4525
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CliFunction.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import inspect
import os
import sys
import re

Expand Down Expand Up @@ -131,7 +132,7 @@ def generate_method_kwargs(self, *, args: [str], function) -> dict:
class Targets:
"""holds functions to be exposed over CLI"""
def __init__(self):
self.headingName = "Targets"
self.headingName = os.path.basename(sys.argv[0])
self.targets = [] # These are not in a subdirectory
self.parser = DefaultArgumentParser()

Expand Down

0 comments on commit 7de4525

Please sign in to comment.