Skip to content

Commit

Permalink
fix pythno3.7 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamilcuk committed Oct 20, 2024
1 parent 9c87986 commit 18430bb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/nomad_tools/nomadlib/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@
import os
import ssl
import sys
import urllib.parse
from abc import ABC, abstractmethod
from typing import Any, Dict, Literal, Optional, Union
from typing import Any, Dict, Optional, Union

import requests.adapters
import requests.auth
import urllib3
import urllib.parse
import websocket
from typing_extensions import Literal

from ..common_base import cached_property
from . import types
Expand Down

0 comments on commit 18430bb

Please sign in to comment.