mirror of https://gitlab.com/bashrc2/epicyon
Less indentation
parent
904752652a
commit
9f03aa51ce
|
|
@ -205,10 +205,9 @@ def get_featured_tags_collection(self, calling_domain: str,
|
|||
'totalItems': 0,
|
||||
'type': 'Collection'
|
||||
}
|
||||
if is_a_dir(account_dir):
|
||||
featured_tags_filename: str = \
|
||||
account_dir + '/featured_hashtags.txt'
|
||||
if is_a_file(featured_tags_filename):
|
||||
if is_a_dir(account_dir) and is_a_file(featured_tags_filename):
|
||||
hashtags_str: str = \
|
||||
load_string(featured_tags_filename,
|
||||
'EX: unable to load featured hashtags ' +
|
||||
|
|
|
|||
Loading…
Reference in New Issue