Skip to content

Commit

Permalink
remove merge issue
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielYang59 committed Oct 22, 2024
1 parent 6613d33 commit 3baea3a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ jobs:
strategy:
fail-fast: false
max-parallel: 20
fail-fast: false
matrix:
os: [ubuntu-latest, macos-14, windows-latest]
python-version: ["3.9", "3.12"]
Expand Down
6 changes: 1 addition & 5 deletions src/monty/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import errno
import gzip
import io
import lzma
import mmap
import os
import subprocess
Expand All @@ -17,11 +18,6 @@
from pathlib import Path
from typing import TYPE_CHECKING, Literal, cast

try:
import lzma
except ImportError:
lzma = None # type: ignore[assignment]

if TYPE_CHECKING:
from typing import IO, Iterator, Union

Expand Down

0 comments on commit 3baea3a

Please sign in to comment.