Skip to content

Commit 84b4272

Browse files
committed
update name part 2
1 parent e49bd11 commit 84b4272

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A python package parsing gaia files. It takes a gaia file as input and parses th
44
Example usage:
55

66
```python
7-
from ElectricityNetworFileParser.GnfParser import GnfParser
7+
from electricity_network_file_parser.GnfParser import GnfParser
88

99
gnf_parser = GnfParser("test.gnf")
1010
gnf_parser.parse_file()
@@ -20,4 +20,4 @@ gnf_parser.write_all_data_frames()
2020

2121
Create a new python environment and run the following command:
2222

23-
`pip install ElectricityNetworFileParser `
23+
`pip install electricity_network_file_parser `

src/electricity_network_file_parser/FileParser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from pathlib import Path
55

6-
from ElectricityNetworFileParser.dataclasses import PropertyDescription
6+
from electricity_network_file_parser.dataclasses import PropertyDescription
77

88
class FileParser:
99
def __init__(self, file_path):

src/electricity_network_file_parser/GnfParser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import pandas as pd
2-
from ElectricityNetworFileParser.FileParser import FileParser
2+
from electricity_network_file_parser.FileParser import FileParser
33

44
class GnfParser(FileParser):
55

0 commit comments

Comments
 (0)