Skip to content

Commit ffe8ece

Browse files
Remove python type hints from local mapfile merging methods
1 parent 72a9cfc commit ffe8ece

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

osg-comanage-project-usermap.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def get_osguser_groups(filter_group_name=None):
149149
for pid, gids in pid_gids.items() }
150150

151151

152-
def parse_inputfile(inputfile: str):
152+
def parse_inputfile(inputfile):
153153
user_groupmap = dict()
154154
with open(inputfile) as file:
155155
for line in file:
@@ -159,7 +159,7 @@ def parse_inputfile(inputfile: str):
159159
return user_groupmap
160160

161161

162-
def merge_maps(maps: list[dict[str, list]]):
162+
def merge_maps(maps):
163163
while len(maps) > 1:
164164
merge_target = maps[0]
165165
merge_material = maps.pop(1)

0 commit comments

Comments
 (0)