Skip to content

Commit

Permalink
move database_connection assignment after super()...
Browse files Browse the repository at this point in the history
Co-authored-by: John Davis <[email protected]>
  • Loading branch information
ahmedhamidawan and jdavcs authored Jan 30, 2024
1 parent 3e94c4d commit 5ffa9e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/managers/history_contents.py
Original file line number Diff line number Diff line change
Expand Up @@ -631,8 +631,8 @@ def parse_type_id_list(self, type_id_list_string, sep=","):
return [self.decode_type_id(type_id) for type_id in type_id_list_string.split(sep)]

def _add_parsers(self):
database_connection: str = self.app.config.database_connection
super()._add_parsers()
database_connection: str = self.app.config.database_connection
annotatable.AnnotatableFilterMixin._add_parsers(self)
genomes.GenomeFilterMixin._add_parsers(self, database_connection)
deletable.PurgableFiltersMixin._add_parsers(self)
Expand Down

0 comments on commit 5ffa9e1

Please sign in to comment.