awacke1 commited on
Commit
1ff8b36
·
1 Parent(s): 78b1f5c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ import gradio as gr
7
  def MatchLOINC(name):
8
  import pandas as pd
9
  basedir = os.path.dirname(__file__)
10
- data = pd.read_csv(f'{basedir}/LoincTableCore.csv') # LOINC Download https://loinc.org/downloads/
11
  swith = data[data['COMPONENT'].str.match(name)]
12
  return switch
13
 
 
7
  def MatchLOINC(name):
8
  import pandas as pd
9
  basedir = os.path.dirname(__file__)
10
+ data = pd.read_csv(f'LoincTableCore.csv') # LOINC Download https://loinc.org/downloads/
11
  swith = data[data['COMPONENT'].str.match(name)]
12
  return switch
13