Skip to content

Commit 4d1f557

Browse files
committed
docstring updates
1 parent e7fcf45 commit 4d1f557

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pystackql/stackql.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,10 @@ async def executeQueriesAsync(self, queries):
538538
>>> from pystackql import StackQL
539539
>>> stackql = StackQL()
540540
>>> queries = [
541-
>>> "SELECT '%s' as region, instanceType, COUNT(*) as num_instances FROM aws.ec2.instances WHERE region = '%s' GROUP BY instanceType" % (region, region)
541+
>>> \"\"\"SELECT '%s' as region, instanceType, COUNT(*) as num_instances
542+
... FROM aws.ec2.instances
543+
... WHERE region = '%s'
544+
... GROUP BY instanceType\"\"\" % (region, region)
542545
>>> for region in regions ]
543546
>>> result = stackql.executeQueriesAsync(queries)
544547

0 commit comments

Comments
 (0)