Skip to content
This repository was archived by the owner on Apr 21, 2023. It is now read-only.

Commit be70f86

Browse files
authored
Removed try to fix warning.
Removed try to fix the warning below: ```swift No calls to throwing functions occur within 'try' expression ```
1 parent 211d4c8 commit be70f86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Can be implemented in Swift through PythonKit with the following code:
2323
```swift
2424
import PythonKit
2525

26-
let sys = try Python.import("sys")
26+
let sys = Python.import("sys")
2727

2828
print("Python \(sys.version_info.major).\(sys.version_info.minor)")
2929
print("Python Version: \(sys.version)")

0 commit comments

Comments
 (0)