This commit is contained in:
zandercymatics 2023-11-21 08:01:28 -07:00
parent ba2994812f
commit d5cdc624b2
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
2 changed files with 38 additions and 42 deletions

View file

@ -963,7 +963,6 @@ class ExtraTransitionDomain:
# metadata about each file and associate it with an enum.
# That way if we want the data located at the agency_adhoc file,
# we can just call EnumFilenames.AGENCY_ADHOC.
if options.pattern_map_params is None or options.pattern_map_params == []:
options.pattern_map_params = [
(
EnumFilenames.AGENCY_ADHOC,

View file

@ -18,9 +18,6 @@ class TransitionDomainArguments:
# Maintains an internal kwargs list and sets values
# that match the class definition.
def __init__(self, **kwargs):
self.pattern_map_params = []
if "self.pattern_map_params" in kwargs:
self.pattern_map_params = kwargs["pattern_map_params"]
self.kwargs = kwargs
for k, v in kwargs.items():
if hasattr(self, k):