Skip to content

Commit 4736364

Browse files
committed
One more tweak
1 parent 8440747 commit 4736364

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/machine-learning/package-management/python-package-information.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ The following example script displays a list of all Python packages installed in
102102

103103
```sql
104104
EXECUTE sp_execute_external_script
105-
@language = N'Python'
106-
, @script = N'
105+
@language = N'Python',
106+
@script = N'
107107
import pkg_resources
108108
import pandas
109109
OutputDataSet = pandas.DataFrame(sorted([(i.key, i.version) for i in pkg_resources.working_set]))'

0 commit comments

Comments
 (0)