zulip_bots: Remove get_bot_doc_path and get_bot_logo_path.
These functions were rendered redundant by changes in our approach on how the main repo renders docs and logos contained in the zulip_bots package (see #6103). So, these should now be removed.
This commit is contained in:
		
							parent
							
								
									baa09bc26c
								
							
						
					
					
						commit
						5681b6e9e2
					
				
					 1 changed files with 0 additions and 19 deletions
				
			
		|  | @ -22,30 +22,11 @@ def exit_gracefully(signum, frame): | |||
|     # type: (int, Optional[Any]) -> None | ||||
|     sys.exit(0) | ||||
| 
 | ||||
| def get_bot_logo_path(name): | ||||
|     # type: str -> Optional[str] | ||||
|     current_dir = os.path.dirname(os.path.abspath(__file__)) | ||||
|     logo_path_png = os.path.join( | ||||
|         current_dir, 'bots/{bot_name}/logo.png'.format(bot_name=name)) | ||||
|     logo_path_svg = os.path.join( | ||||
|         current_dir, 'bots/{bot_name}/logo.svg'.format(bot_name=name)) | ||||
| 
 | ||||
|     if os.path.isfile(logo_path_png): | ||||
|         return logo_path_png | ||||
|     elif os.path.isfile(logo_path_svg): | ||||
|         return logo_path_svg | ||||
| 
 | ||||
|     return None | ||||
| 
 | ||||
| def get_bots_directory_path(): | ||||
|     # type: () -> str | ||||
|     current_dir = os.path.dirname(os.path.abspath(__file__)) | ||||
|     return os.path.join(current_dir, 'bots') | ||||
| 
 | ||||
| def get_bot_doc_path(name): | ||||
|     # type: (str) -> str | ||||
|     return os.path.join(get_bots_directory_path(), '{}/doc.md'.format(name)) | ||||
| 
 | ||||
| class RateLimit(object): | ||||
|     def __init__(self, message_limit, interval_limit): | ||||
|         # type: (int, int) -> None | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Eeshan Garg
						Eeshan Garg