mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	python: Elide action="store" for argparse arguments.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
		
				
					committed by
					
						
						Alex Vandiver
					
				
			
			
				
	
			
			
			
						parent
						
							1f2ac1962f
						
					
				
				
					commit
					fbfd4b399d
				
			@@ -16,11 +16,11 @@ class Command(BaseCommand):
 | 
			
		||||
        parser.add_argument('app_label', nargs='?',
 | 
			
		||||
                            help='App label of an application to synchronize the state.')
 | 
			
		||||
 | 
			
		||||
        parser.add_argument('--database', action='store',
 | 
			
		||||
        parser.add_argument('--database',
 | 
			
		||||
                            default=DEFAULT_DB_ALIAS, help='Nominates a database to synchronize. '
 | 
			
		||||
                            'Defaults to the "default" database.')
 | 
			
		||||
 | 
			
		||||
        parser.add_argument('--output', action='store',
 | 
			
		||||
        parser.add_argument('--output',
 | 
			
		||||
                            help='Path to store the status to (default to stdout).')
 | 
			
		||||
 | 
			
		||||
    def handle(self, *args: Any, **options: Any) -> None:
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user