We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c75427b + bd6f3d3 commit 3bb8663Copy full SHA for 3bb8663
2 files changed
tests/basics/set_union.py
@@ -1 +1 @@
1
-print({1}.union({2}))
+print(sorted({1}.union({2})))
tools/pip-micropython
@@ -6,6 +6,12 @@
6
# ports (if PIP_MICROPY_DEST environment var is set).
7
#
8
9
+if [ "$1" != "install" ]; then
10
+ echo "Only install command is supported currently"
11
+ exit 1
12
+fi
13
+shift
14
+
15
if [ -n "$PIP_MICROPY_DEST" ]; then
16
dest="$PIP_MICROPY_DEST"
17
echo "Destination snapshot directory: $dest"
0 commit comments