Skip to content

Commit c01af82

Browse files
committed
Fix minor strings syntax issues for docs generation.
1 parent d3b9b63 commit c01af82

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

PANDORA/Database/Database.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ def set_reverse(self, reverse):
3737
self.__reverse()
3838
self.reverse = reverse
3939

40-
def download_data(self, data_dir = f'{PANDORA.PANDORA_data}/database', download = True):
41-
"""download_data(self, data_dir = f'{PANDORA.PANDORA_data}/database', download = True)
40+
def download_data(self, data_dir = PANDORA.PANDORA_data + '/database', download = True):
41+
"""download_data(self, data_dir = PANDORA.PANDORA_data + '/database', download = True)
4242
Download all MHC structures and get a two lists that contains all MHCI and MHCII IDs respectively"""
4343

4444
if download:

PANDORA/PMHC/PMHC.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -607,6 +607,7 @@ def fill_allele_seq_info(self, use_templ_seq=False):
607607
def make_output_dir(self):
608608
''' Create an output directory and move the template pdb there
609609
Uses self.output_dir (str): Path to output directory. Defaults to os.getcwd().
610+
610611
Args:
611612
None
612613
'''

0 commit comments

Comments
 (0)