We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents eacb3e9 + 4ec5b8e commit 4b111e7Copy full SHA for 4b111e7
1 file changed
Idris2Python/Idris2Python/ModuleTemplate.idr
@@ -1,20 +1,20 @@
1
module Idris2Python.ModuleTemplate
2
3
import Data.List
4
+import Data.SortedSet
5
import Data.String
6
7
import Core.Core
8
import Core.Name
9
10
import System.File
11
-import Libraries.Data.SortedSet
12
import Libraries.Utils.Path
13
14
import Idris2Python.PythonFFI
15
16
unique : Ord a => List a -> List a
17
-unique = SortedSet.toList . fromList
+unique = Prelude.toList . fromList
18
19
copyFile' : HasIO io
20
=> (sourcePath : String)
0 commit comments