Skip to content

Commit

Permalink
Remove sys info
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewfeickert committed Apr 17, 2021
1 parent 66ef8ab commit eb2f579
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/pylhe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import os
import subprocess
import xml.etree.ElementTree as ET
from sys import version_info

import networkx as nx
import tex2pix
Expand All @@ -23,11 +22,10 @@
"visualize",
]

# Python 3.7+ feature
if version_info >= (3, 7):

def __dir__():
return __all__
# Python 3.7+
def __dir__():
return __all__


class LHEFile:
Expand Down

0 comments on commit eb2f579

Please sign in to comment.