Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffkaufman committed Jan 25, 2021
1 parent 3e45ede commit 22b9c72
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions server.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,13 @@
import struct
import subprocess
import copy
import sys

from typing import Any, Dict, List, Tuple, Iterable

sys.path.append(os.path.dirname(__file__)) # for finding our files
import util

logging.basicConfig(filename='server.log',level=logging.DEBUG)

# big-endian
Expand Down
4 changes: 2 additions & 2 deletions server_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import urllib.parse
import numpy as np # type:ignore
import opuslib # type:ignore
import util
import time
import struct

Expand All @@ -17,9 +16,10 @@

import SharedArray # pip install SharedArray

sys.path.append(os.path.dirname(__file__)) # for finding server
sys.path.append(os.path.dirname(__file__)) # for finding our files
import server
import shm
import util

from typing import Any, Dict, List, Tuple

Expand Down

0 comments on commit 22b9c72

Please sign in to comment.